get_portuguese_company_details
contribuinte.ptRetrieves a Portuguese company's detailed record by 9-digit NIF from https://contribuinte.pt. Returns its registered name, status, address, last-updated date, CAE activities, and any other non-empty company details exposed by the site.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_portuguese_company_details?
Retrieves a Portuguese company's detailed record by 9-digit NIF from https://contribuinte.pt. Returns its registered name, status, address, last-updated date, CAE activities, and any other non-empty company details exposed by the site. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass nif and get the result back without maintaining a scraper.
Response
{
"company": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/b33e8980-ec8c-482b-a278-87f5e661a4ab/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b33e8980-ec8c-482b-a278-87f5e661a4ab",
"variables": {
"nif": "500273170"
}
}'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="b33e8980-ec8c-482b-a278-87f5e661a4ab") — the "get_portuguese_company_details" function, which retrieves a Portuguese company's detailed record by 9-digit NIF from https://contribuinte.pt. Returns its registered name, status, address, last-updated date, CAE activities, and any other non-empty company details exposed by the site.. It takes nif (str). Return the result as structured JSON.