Marketplace
No threads yet
Live

get_provider_profile

ucas.com

Returns a detailed provider profile from https://ucas.com with contact details, course counts, paginated course listings, and open day events.

Parameters5
Runs8
Updated3d ago
Operational8 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_provider_profile?

Returns a detailed provider profile from https://ucas.com with contact details, course counts, paginated course listings, and open day events. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass provider_id, academic_year, course_page, course_page_size, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "courses": [
    {}
  ],
  "provider": {},
  "course_page": 0,
  "provider_id": "<string>",
  "course_count": 0,
  "academic_year": "<string>",
  "open_day_events": [
    {}
  ],
  "course_page_size": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/64d75626-c178-455e-9275-2d4e41dd731f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "64d75626-c178-455e-9275-2d4e41dd731f",
    "variables": {
        "provider_id": "DEFAULT_PROVIDER_ID",
        "academic_year": "2026",
        "course_page": 1,
        "course_page_size": 50,
        "timeout_seconds": 25
    }
}'

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="64d75626-c178-455e-9275-2d4e41dd731f") — the "get_provider_profile" function, which returns a detailed provider profile from https://ucas.com with contact details, course counts, paginated course listings, and open day events..

It takes provider_id (str), academic_year (str), course_page (int), course_page_size (int), timeout_seconds (int). Return the result as structured JSON.