Live
search_portuguese_companies
nif.ptSearches https://www.nif.pt by company name and returns one page of matching Portuguese companies with NIF, name, and location.
Parameters1
Runs10
Updated10d ago
Operational10 runs · 100% 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 https://www.nif.pt by company name and returns one page of matching Portuguese companies with NIF, name, and location. 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
{
"count": 0,
"query": "<string>",
"companies": [
{
"nif": "<string>",
"name": "<string>",
"location": "<string>"
}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/88b3464b-f043-4252-ace8-426ac808c609/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "88b3464b-f043-4252-ace8-426ac808c609",
"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="88b3464b-f043-4252-ace8-426ac808c609") — the "search_portuguese_companies" function, which searches https://www.nif.pt by company name and returns one page of matching Portuguese companies with NIF, name, and location.. It takes query (str). Return the result as structured JSON.