get_company_officers
zephira.aiRetrieves the first page of officer appointments for a company from https://zephira.ai, including directors and secretaries with role, appointment, resignation, and address fields plus total_pages and total_results metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_company_officers?
Retrieves the first page of officer appointments for a company from https://zephira.ai, including directors and secretaries with role, appointment, resignation, and address fields plus total_pages and total_results metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass company_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"count": 0,
"officers": [
{}
],
"company_id": "<string>",
"total_pages": 0,
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e631d897-a058-4a47-813d-c4050139dffa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e631d897-a058-4a47-813d-c4050139dffa",
"variables": {
"company_id": "19356497",
"timeout_seconds": 30
}
}'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="e631d897-a058-4a47-813d-c4050139dffa") — the "get_company_officers" function, which retrieves the first page of officer appointments for a company from https://zephira.ai, including directors and secretaries with role, appointment, resignation, and address fields plus total_pages and total_results metadata.. It takes company_id (str), timeout_seconds (int). Return the result as structured JSON.