list_k12_school_reviews
niche.comReturns paginated K-12 school user reviews from https://niche.com by school slug, including author type, review text, rating, date, categories, helpfulness, and 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 list_k12_school_reviews?
Returns paginated K-12 school user reviews from https://niche.com by school slug, including author type, review text, rating, date, categories, helpfulness, and 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, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"source": "<string>",
"reviews": [
{
"date": "<string>",
"body_text": "<string>",
"review_id": "<string>",
"categories": [
"<string>"
],
"author_type": "<string>",
"helpfulness": 0,
"source_record": {},
"numeric_rating": 0
}
],
"page_size": 0,
"query_url": "<string>",
"school_guid": "<string>",
"school_name": "<string>",
"school_slug": "<string>",
"total_pages": 0,
"has_next_page": true,
"school_record": {},
"total_reviews": 0,
"rating_distribution": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/14b47380-fb80-472a-8f87-db0027b3f498/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "14b47380-fb80-472a-8f87-db0027b3f498",
"variables": {
"slug": "the-hotchkiss-school-lakeville-ct",
"page": 1
}
}'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="14b47380-fb80-472a-8f87-db0027b3f498") — the "list_k12_school_reviews" function, which returns paginated K-12 school user reviews from https://niche.com by school slug, including author type, review text, rating, date, categories, helpfulness, and non-empty source fields.. It takes slug (str), page (int). Return the result as structured JSON.