get_k12_school_details
niche.comGets a detailed K-12 school overview from https://niche.com by school slug. Returns report card grades, rankings, statistics, tags, contact details, review summaries, user reviews, community feedback, and all non-empty school record fields exposed by the source.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_k12_school_details?
Gets a detailed K-12 school overview from https://niche.com by school slug. Returns report card grades, rankings, statistics, tags, contact details, review summaries, user reviews, community feedback, and all non-empty school record fields exposed by the source. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass slug and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"name": "<string>",
"slug": "<string>",
"tags": [
{}
],
"photos": [
{}
],
"school": {},
"source": "<string>",
"rankings": [
{}
],
"statistics": [
{}
],
"description": "<string>",
"user_reviews": [
{}
],
"overall_grade": "<string>",
"source_record": {},
"review_summary": {},
"community_polls": [
{}
],
"report_card_grades": [
{}
],
"contact_information": {},
"overall_grade_score": 0,
"review_questions_and_answers": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/24aa7259-60e5-4b28-bff8-c18ad8806258/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "24aa7259-60e5-4b28-bff8-c18ad8806258",
"variables": {
"slug": "the-hotchkiss-school-lakeville-ct"
}
}'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="24aa7259-60e5-4b28-bff8-c18ad8806258") — the "get_k12_school_details" function, which gets a detailed K-12 school overview from https://niche.com by school slug. Returns report card grades, rankings, statistics, tags, contact details, review summaries, user reviews, community feedback, and all non-empty school record fields exposed by the source.. It takes slug (str). Return the result as structured JSON.