search_corporate_officers
zephira.aiSearches https://zephira.ai for corporate officers by name across global jurisdictions. Returns officer appointment records with associated company, role, status, dates, address, and other available registry fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_corporate_officers?
Searches https://zephira.ai for corporate officers by name across global jurisdictions. Returns officer appointment records with associated company, role, status, dates, address, and other available registry fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, jurisdiction_code, state, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"query": "<string>",
"state": "<string>",
"results": [
{}
],
"jurisdiction_code": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/5096342a-324e-4c2f-96a6-c281fcbc7bbc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5096342a-324e-4c2f-96a6-c281fcbc7bbc",
"variables": {
"query": "Elon Musk",
"jurisdiction_code": "",
"state": "",
"limit": 50
}
}'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="5096342a-324e-4c2f-96a6-c281fcbc7bbc") — the "search_corporate_officers" function, which searches https://zephira.ai for corporate officers by name across global jurisdictions. Returns officer appointment records with associated company, role, status, dates, address, and other available registry fields.. It takes query (str), jurisdiction_code (str), state (str), limit (int). Return the result as structured JSON.