Live
search_portuguese_companies
contribuinte.ptSearches Portuguese companies by registered name or NIF on https://contribuinte.pt. Returns every match from the site's single results page with its NIF and registered name.
Parameters1
Runs10
Updated10d ago
Degraded10 runs · 90% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_portuguese_companies?
Searches Portuguese companies by registered name or NIF on https://contribuinte.pt. Returns every match from the site's single results page with its NIF and registered name. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.
Response
{
"query": "<string>",
"total": 0,
"companies": [
{
"nif": "<string>",
"registered_name": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/589d8dc8-0995-4b9c-8ba6-5acb4718c92c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "589d8dc8-0995-4b9c-8ba6-5acb4718c92c",
"variables": {
"query": "Sonae"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="589d8dc8-0995-4b9c-8ba6-5acb4718c92c") — the "search_portuguese_companies" function, which searches Portuguese companies by registered name or NIF on https://contribuinte.pt. Returns every match from the site's single results page with its NIF and registered name.. It takes query (str). Return the result as structured JSON.