scholarshipportal.com APIscholarshipportal.com ↗
Search scholarships, academic programmes, and universities from ScholarshipPortal via 6 endpoints. Filter by country, discipline, study level, and keyword.
curl -X GET 'https://api.parse.bot/scraper/d8ac1888-45af-4a2b-9aee-a54938204f94/search_scholarships?limit=3&query=engineering&study_level=master' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for scholarships with filters for study level, country, discipline, and keyword. Returns paginated results sorted by relevance.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of results to return per request. |
| query | string | Search keyword to filter scholarships by title or description. |
| offset | integer | Pagination offset (number of results to skip). |
| country_iso | string | Two-letter ISO country code to filter by destination country (e.g. CA, US, GB, NL). |
| study_level | string | Study level filter. Accepted values: master, bachelor, phd. |
| discipline_ids | string | Comma-separated numeric discipline IDs to filter by field of study. IDs available from get_disciplines_list endpoint. |
{
"type": "object",
"fields": {
"items": "array of scholarship objects with id, title, description, provider, benefits, deadline, grant, slug, and url",
"total": "total number of matching scholarships",
"has_more": "boolean indicating whether more results exist beyond current offset + limit"
},
"sample": {
"data": {
"items": [
{
"id": "9254",
"url": "https://www.mastersportal.com/scholarships/9254/mundus-mapp-emjm-scholarship.html",
"slug": "mundus-mapp-emjm-scholarship",
"grant": {
"amount": 33600,
"currency": "EUR",
"description": "Up to full tuition waiver"
},
"title": "Mundus MAPP EMJM Scholarship",
"benefits": "33600 EUR",
"deadline": "01 Jul 2026",
"provider": {
"id": "400",
"name": "Mundus MAPP",
"location": null,
"is_university": false
},
"description": "<p>A limited number of EMJM scholarships are awarded to the highest-ranked applicants for the duration of the programme (24 months).</p>",
"discipline_ids": [],
"application_basis": "Merit-based",
"origin_country_ids": [
"1",
"24",
"12"
],
"is_deadline_specified": true,
"destination_country_ids": []
}
],
"total": 4439,
"has_more": true
},
"status": "success"
}
}About the scholarshipportal.com API
The ScholarshipPortal API exposes 6 endpoints that cover scholarship search, programme discovery, and university lookup across StudyPortals' global education database. The search_scholarships endpoint returns paginated scholarship objects including title, provider, deadline, grant amount, and URL, filterable by destination country, study level, and discipline. Reference endpoints supply valid country ISO codes and numeric discipline IDs for use in search filters.
Scholarship and Programme Search
The search_scholarships endpoint accepts up to six filter parameters — query, country_iso, study_level (master, bachelor, phd), discipline_ids, limit, and offset — and returns an items array where each object carries the scholarship's id, title, description, provider, benefits, deadline, grant, slug, and url. The total and has_more fields support pagination logic. The search_programmes endpoint shares the same filter surface and returns programme objects with university, location, tuition, duration, and summary fields.
Scholarship Detail
get_scholarship_details takes the id and slug from a search result and returns the full detail page's structured data: an about HTML block, an eligibility_summary HTML block, and a json_ld array containing any JSON-LD structured data objects present on the page. This endpoint is suited for building detail views or extracting machine-readable metadata without parsing raw HTML yourself.
University Search and Reference Data
search_universities filters by keyword and study_level, returning each institution's name, summary, location, ranking, programmes_count, and scholarships_count. Two lightweight reference endpoints support filter discovery: get_countries_list returns objects with iso (two-letter country code) and count (matching programmes), while get_disciplines_list returns objects with a numeric id and count. Both accept a study_level parameter and are the recommended way to populate country and discipline filter dropdowns before calling the search endpoints.
- Build a scholarship matching tool that filters results by destination country, study level, and field using
search_scholarships - Display full eligibility requirements for a specific scholarship using
get_scholarship_detailsand itseligibility_summaryfield - Aggregate tuition and duration data across programmes in a given country using
search_programmeswithcountry_isoanddiscipline_ids - Generate ranked lists of universities by
scholarships_countorprogrammes_countusingsearch_universities - Populate country and discipline filter dropdowns dynamically using
get_countries_listandget_disciplines_list - Track scholarship deadlines and grant amounts across a filtered result set for a grant-comparison dashboard
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does ScholarshipPortal have an official developer API?+
What does `get_scholarship_details` return that `search_scholarships` does not?+
search_scholarships returns summary-level fields like title, provider, deadline, and grant. get_scholarship_details adds the full about HTML section, the eligibility_summary HTML block, and a json_ld array of structured data objects from the scholarship's detail page — fields that are not available in paginated search results.How should I use `get_disciplines_list` and `get_countries_list` before searching?+
study_level parameter (master, bachelor, phd) and return items with a numeric id or two-letter iso code alongside a count of matching programmes. Pass those id values as comma-separated discipline_ids and the iso values as country_iso when calling search_scholarships or search_programmes to ensure your filters match valid entries.Does the API return application links or direct-apply URLs for scholarships?+
url field pointing to the ScholarshipPortal listing page. Direct external application URLs are not currently broken out as a separate field. You can fork this API on Parse and revise it to extract application links from the detail page's json_ld or about content.Does the API cover all study levels and regions equally?+
study_level filter supports master, bachelor, and phd across all search and reference endpoints. Coverage depth varies by region — smaller countries may have fewer indexed programmes and scholarships, which the count field in get_countries_list reflects. Undergraduate short courses or non-degree programmes are not currently a distinct study level filter. You can fork this API on Parse and revise it to add additional level values if the underlying data supports them.