get_district_overview
niche.comReturns a detailed K-12 school district overview from https://niche.com by slug, including report card grades, rankings, statistics, tags, contact details, schools, reviews, and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_district_overview?
Returns a detailed K-12 school district overview from https://niche.com by slug, including report card grades, rankings, statistics, tags, contact details, schools, reviews, and all non-empty source fields. 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>",
"slug": "<string>",
"tags": [
{}
],
"source": "<string>",
"district": {},
"rankings": [
{}
],
"sections": [
{}
],
"statistics": {},
"geographic_bounds": [
[
0
]
],
"report_card_grades": [
{}
],
"contact_information": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/690f164d-36ae-43c9-b753-05b55d479f80/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "690f164d-36ae-43c9-b753-05b55d479f80",
"variables": {
"slug": "palo-alto-unified-school-district-ca"
}
}'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="690f164d-36ae-43c9-b753-05b55d479f80") — the "get_district_overview" function, which returns a detailed K-12 school district overview from https://niche.com by slug, including report card grades, rankings, statistics, tags, contact details, schools, reviews, and all non-empty source fields.. It takes slug (str). Return the result as structured JSON.