search_programmes
bachelorsportal.comSearch bachelor's degree programmes on https://www.bachelorsportal.com with optional text, country, and discipline filters. Returns paginated programme summaries with university, location, fees, duration, study format, requirements, and ratings.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_programmes?
Search bachelor's degree programmes on https://www.bachelorsportal.com with optional text, country, and discipline filters. Returns paginated programme summaries with university, location, fees, duration, study format, requirements, and ratings. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, country, discipline, page, page_size and get the result back without maintaining a scraper.
Response
{
"pagination": {},
"programmes": [
{}
],
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/c2756fea-d838-4600-8941-5dedc4274909/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c2756fea-d838-4600-8941-5dedc4274909",
"variables": {
"query": "",
"country": "",
"discipline": "",
"page": 1,
"page_size": 10
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="c2756fea-d838-4600-8941-5dedc4274909") — the "search_programmes" function, which search bachelor's degree programmes on https://www.bachelorsportal.com with optional text, country, and discipline filters. Returns paginated programme summaries with university, location, fees, duration, study format, requirements, and ratings.. It takes query (str), country (str), discipline (str), page (int), page_size (int). Return the result as structured JSON.