get_company_details
zephira.aiRetrieves detailed company registry information from https://zephira.ai for a given company_id, including status, registration data, legal form, address, contact website, and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_company_details?
Retrieves detailed company registry information from https://zephira.ai for a given company_id, including status, registration data, legal form, address, contact website, and all non-empty source fields. 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
{
"name": "<string>",
"status": "<string>",
"company": {},
"website": "<string>",
"company_id": "<string>",
"legal_form": "<string>",
"vat_number": "<string>",
"incorporation_date": "<string>",
"registered_address": "<string>",
"registration_number": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/95e0a44a-de01-42ca-a078-6cd9f353aeb0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "95e0a44a-de01-42ca-a078-6cd9f353aeb0",
"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="95e0a44a-de01-42ca-a078-6cd9f353aeb0") — the "get_company_details" function, which retrieves detailed company registry information from https://zephira.ai for a given company_id, including status, registration data, legal form, address, contact website, and all non-empty source fields.. It takes company_id (str), timeout_seconds (int). Return the result as structured JSON.