Live
get_department_personnel
sco.ca.govReturns named personnel contacts for a California state department from https://www.sco.ca.gov with job title, phone or extension, email, area, and assignment.
Parameters1
Runs9
Updated1h ago
Degraded9 runs · 66.6% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_department_personnel?
Returns named personnel contacts for a California state department from https://www.sco.ca.gov with job title, phone or extension, email, area, and assignment. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass department_slug and get the result back without maintaining a scraper.
Response
{
"count": 0,
"personnel": [
{
"area": "<string>",
"name": "<string>",
"email": "<string>",
"phone": "<string>",
"job_title": "<string>",
"assignment": "<string>"
}
],
"last_updated": "<string>",
"department_name": "<string>",
"department_slug": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/b5db9d99-1ec7-484b-8a15-99bf20466dcb/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b5db9d99-1ec7-484b-8a15-99bf20466dcb",
"variables": {
"department_slug": "aging"
}
}'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="b5db9d99-1ec7-484b-8a15-99bf20466dcb") — the "get_department_personnel" function, which returns named personnel contacts for a California state department from https://www.sco.ca.gov with job title, phone or extension, email, area, and assignment.. It takes department_slug (str). Return the result as structured JSON.