Live
search_ranked_colleges
niche.comReturns paginated colleges ranked on https://niche.com with name, slug, URL, overall Niche grade, tagline, ranking metadata, and every non-empty source record field.
Parameters1
Runs5
Updated1d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_ranked_colleges?
Returns paginated colleges ranked on https://niche.com with name, slug, URL, overall Niche grade, tagline, ranking metadata, and every non-empty source record field. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"source": "<string>",
"ranking": "<string>",
"results": [
{
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"tagline": [
"<string>"
],
"college_guid": "<string>",
"overall_grade": "<string>",
"source_record": {},
"overall_grade_score": 0
}
],
"metadata": {},
"page_size": 0,
"query_url": "<string>",
"total_pages": 0,
"has_next_page": true,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/11f75e11-a1a0-41ff-824a-9abffff2498b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "11f75e11-a1a0-41ff-824a-9abffff2498b",
"variables": {
"page": 1
}
}'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="11f75e11-a1a0-41ff-824a-9abffff2498b") — the "search_ranked_colleges" function, which returns paginated colleges ranked on https://niche.com with name, slug, URL, overall Niche grade, tagline, ranking metadata, and every non-empty source record field.. It takes page (int). Return the result as structured JSON.