get_programme_details
bachelorsportal.comGet detailed information for one bachelor's programme from https://www.bachelorsportal.com using the programme ID returned by search_programmes. Returns its description, university, location, dates, tuition, duration, programme structure, ratings, and available scholarships.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_programme_details?
Get detailed information for one bachelor's programme from https://www.bachelorsportal.com using the programme ID returned by search_programmes. Returns its description, university, location, dates, tuition, duration, programme structure, ratings, and available scholarships. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass program_id and get the result back without maintaining a scraper.
Response
{
"programme": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/bdf3c815-f380-4a00-9be0-e99628572d71/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "bdf3c815-f380-4a00-9be0-e99628572d71",
"variables": {
"program_id": 502960
}
}'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="bdf3c815-f380-4a00-9be0-e99628572d71") — the "get_programme_details" function, which get detailed information for one bachelor's programme from https://www.bachelorsportal.com using the programme ID returned by search_programmes. Returns its description, university, location, dates, tuition, duration, programme structure, ratings, and available scholarships.. It takes program_id (int). Return the result as structured JSON.