search_editorial_content
ucas.comSearches editorial content on https://ucas.com with content-type filtering and pagination, returning complete non-empty records with titles, URLs, summaries, and authors.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_editorial_content?
Searches editorial content on https://ucas.com with content-type filtering and pagination, returning complete non-empty records with titles, URLs, summaries, and authors. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, content_type, 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,
"content_type": "<string>",
"total_results": 0,
"available_content_types": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/632dd5a8-63d1-44a4-9eaf-710dcf8236e6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "632dd5a8-63d1-44a4-9eaf-710dcf8236e6",
"variables": {
"query": "psychology",
"content_type": "all",
"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="632dd5a8-63d1-44a4-9eaf-710dcf8236e6") — the "search_editorial_content" function, which searches editorial content on https://ucas.com with content-type filtering and pagination, returning complete non-empty records with titles, URLs, summaries, and authors.. It takes query (str), content_type (str), page (int), page_size (int), timeout_seconds (int). Return the result as structured JSON.