search_education_providers
ucas.comSearches university and college providers on https://ucas.com by full text across names and addresses. Returns paginated provider records with all non-empty fields, including identity, region, qualifications offered, and study modes.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_education_providers?
Searches university and college providers on https://ucas.com by full text across names and addresses. Returns paginated provider records with all non-empty fields, including identity, region, qualifications offered, and study modes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{}
],
"page_size": 0,
"total_pages": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2e1ccc3e-0861-4855-b95e-35e2755d100f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2e1ccc3e-0861-4855-b95e-35e2755d100f",
"variables": {
"query": "london",
"page": 1,
"page_size": 10,
"timeout_seconds": 20
}
}'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="2e1ccc3e-0861-4855-b95e-35e2755d100f") — the "search_education_providers" function, which searches university and college providers on https://ucas.com by full text across names and addresses. Returns paginated provider records with all non-empty fields, including identity, region, qualifications offered, and study modes.. It takes query (str), page (int), page_size (int), timeout_seconds (int). Return the result as structured JSON.