get_dominion_academy_faculty_staff_directory
dominionacademy.orgReturns the Dominion Academy of Dayton faculty and staff directory with names, roles, departments, email contacts, biographies, profile links, and photo URLs where published. Reads https://www.dominionacademy.org and can filter administrative, Cathedral School (K-6), or junior high and high school (7-12) staff.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_dominion_academy_faculty_staff_directory?
Returns the Dominion Academy of Dayton faculty and staff directory with names, roles, departments, email contacts, biographies, profile links, and photo URLs where published. Reads https://www.dominionacademy.org and can filter administrative, Cathedral School (K-6), or junior high and high school (7-12) staff. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass department and get the result back without maintaining a scraper.
Response
{
"count": 0,
"staff": [
{}
],
"directory_url": "<string>",
"department_filter": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/2157a26a-1bfd-4988-a169-2e3c67c0985b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2157a26a-1bfd-4988-a169-2e3c67c0985b",
"variables": {
"department": "all"
}
}'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="2157a26a-1bfd-4988-a169-2e3c67c0985b") — the "get_dominion_academy_faculty_staff_directory" function, which returns the Dominion Academy of Dayton faculty and staff directory with names, roles, departments, email contacts, biographies, profile links, and photo URLs where published. Reads https://www.dominionacademy.org and can filter administrative, Cathedral School (K-6), or junior high and high school (7-12) staff.. It takes department (str). Return the result as structured JSON.