search_apprenticeship_listings
ucas.comSearches apprenticeship and graduate vacancy listings on https://ucas.com by full text. Returns paginated records with all non-empty listing fields, including employer, location, salary, duration, level, and industry details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_apprenticeship_listings?
Searches apprenticeship and graduate vacancy listings on https://ucas.com by full text. Returns paginated records with all non-empty listing fields, including employer, location, salary, duration, level, and industry details. 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, sort_by, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"results": [
{}
],
"sort_by": "<string>",
"page_size": 0,
"total_pages": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/95c78cd6-d225-4f99-a005-115a7521f1a8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "95c78cd6-d225-4f99-a005-115a7521f1a8",
"variables": {
"query": "engineering",
"page": 1,
"page_size": 10,
"sort_by": "relevance",
"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="95c78cd6-d225-4f99-a005-115a7521f1a8") — the "search_apprenticeship_listings" function, which searches apprenticeship and graduate vacancy listings on https://ucas.com by full text. Returns paginated records with all non-empty listing fields, including employer, location, salary, duration, level, and industry details.. It takes query (str), page (int), page_size (int), sort_by (str), timeout_seconds (int). Return the result as structured JSON.