Marketplace
No threads yet
Live

list_nearby_schools

school-service.realestate.com.au

Returns nearby all, primary and secondary school records from https://realestate.com.au for Australian coordinates, with address, location, distance, sector, type and year range.

Parameters2
Runs6
Updated3d ago
Operational6 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_nearby_schools?

Returns nearby all, primary and secondary school records from https://realestate.com.au for Australian coordinates, with address, location, distance, sector, type and year range. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass latitude, longitude and get the result back without maintaining a scraper.

Response

{
  "all": [
    {}
  ],
  "source": "<string>",
  "primary": [
    {}
  ],
  "latitude": 0,
  "longitude": 0,
  "secondary": [
    {}
  ]
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4a5976c1-b8cb-47f7-8be1-fe5fa2c2b910/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4a5976c1-b8cb-47f7-8be1-fe5fa2c2b910",
    "variables": {
        "latitude": -33.8688,
        "longitude": 151.2093
    }
}'

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="4a5976c1-b8cb-47f7-8be1-fe5fa2c2b910") — the "list_nearby_schools" function, which returns nearby all, primary and secondary school records from https://realestate.com.au for Australian coordinates, with address, location, distance, sector, type and year range..

It takes latitude (float), longitude (float). Return the result as structured JSON.