get_school_calendar_events
dominionacademy.orgReturns Dominion Academy of Dayton's currently scheduled school calendar events in chronological order, including dates, times, descriptions, locations, and detail links when available. Reads https://www.dominionacademy.org.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_school_calendar_events?
Returns Dominion Academy of Dayton's currently scheduled school calendar events in chronological order, including dates, times, descriptions, locations, and detail links when available. Reads https://www.dominionacademy.org. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass from_date, event_id and get the result back without maintaining a scraper.
Response
{
"count": 0,
"events": [
{}
],
"calendar_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/30bcf30e-3b3b-4566-8e81-e489108307e6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "30bcf30e-3b3b-4566-8e81-e489108307e6",
"variables": {
"from_date": "",
"event_id": ""
}
}'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="30bcf30e-3b3b-4566-8e81-e489108307e6") — the "get_school_calendar_events" function, which returns Dominion Academy of Dayton's currently scheduled school calendar events in chronological order, including dates, times, descriptions, locations, and detail links when available. Reads https://www.dominionacademy.org.. It takes from_date (str), event_id (str). Return the result as structured JSON.