get_course_details
ucas.comRetrieves full course details from https://ucas.com for a UCAS course UUID, including provider information, requirements, fees, contacts, study options, and historic entry-grade data when published.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_course_details?
Retrieves full course details from https://ucas.com for a UCAS course UUID, including provider information, requirements, fees, contacts, study options, and historic entry-grade data when published. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass course_id and get the result back without maintaining a scraper.
Response
{
"details": {},
"course_id": "<string>",
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2878b737-b80a-43c5-9db1-8d9a110868e6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2878b737-b80a-43c5-9db1-8d9a110868e6",
"variables": {
"course_id": "9f6701f6-3a54-868d-ca67-f9bb16bae52b"
}
}'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="2878b737-b80a-43c5-9db1-8d9a110868e6") — the "get_course_details" function, which retrieves full course details from https://ucas.com for a UCAS course UUID, including provider information, requirements, fees, contacts, study options, and historic entry-grade data when published.. It takes course_id (str). Return the result as structured JSON.