get_dominion_academy_event_details
dominionacademy.orgRetrieves detailed information for a specific Dominion Academy school calendar event by event ID from https://www.dominionacademy.org. Returns the event title, category, date, time, full description, and other non-empty event 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_dominion_academy_event_details?
Retrieves detailed information for a specific Dominion Academy school calendar event by event ID from https://www.dominionacademy.org. Returns the event title, category, date, time, full description, and other non-empty event 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 event_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"event": {},
"site_url": "<string>",
"calendar_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/30a46a38-c86d-4a76-a5c2-08960c172b44/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "30a46a38-c86d-4a76-a5c2-08960c172b44",
"variables": {
"event_id": "730",
"timeout_seconds": 20
}
}'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="30a46a38-c86d-4a76-a5c2-08960c172b44") — the "get_dominion_academy_event_details" function, which retrieves detailed information for a specific Dominion Academy school calendar event by event ID from https://www.dominionacademy.org. Returns the event title, category, date, time, full description, and other non-empty event fields exposed by the source.. It takes event_id (str), timeout_seconds (int). Return the result as structured JSON.