Marketplace
No threads yet
Live

get_course_details

ucas.com

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.

Parameters1
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

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.

prompt
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.