search_companies_by_identifier
zephira.aiSearches https://zephira.ai for companies by name, registration number, VAT, LEI, or ticker across global jurisdictions. Returns up to 10 official company summaries per query.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_companies_by_identifier?
Searches https://zephira.ai for companies by name, registration number, VAT, LEI, or ticker across global jurisdictions. Returns up to 10 official company summaries per query. 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/44df5093-bd28-4e49-9741-782f327d2d9c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "44df5093-bd28-4e49-9741-782f327d2d9c",
"variables": {
"query": "Microsoft",
"jurisdiction_code": "",
"state": "",
"limit": 10
}
}'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="44df5093-bd28-4e49-9741-782f327d2d9c") — the "search_companies_by_identifier" function, which searches https://zephira.ai for companies by name, registration number, VAT, LEI, or ticker across global jurisdictions. Returns up to 10 official company summaries per query.. It takes query (str), jurisdiction_code (str), state (str), limit (int). Return the result as structured JSON.