Marketplace
No threads yet
Live

search_state_aid_grants

webgate.ec.europa.eu

Searches https://webgate.ec.europa.eu for company state aid grants within an EU member state, optionally filtered by beneficiary national ID or name. Returns complete record fields and automatically iterates result pages in batches of 25.

Parameters4
Runs16
Updated10d ago
Degraded16 runs · 93.7% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_state_aid_grants?

Searches https://webgate.ec.europa.eu for company state aid grants within an EU member state, optionally filtered by beneficiary national ID or name. Returns complete record fields and automatically iterates result pages in batches of 25. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass country, beneficiary_national_id, beneficiary_name, max_pages and get the result back without maintaining a scraper.

Response

{
  "country": "<string>",
  "records": [
    {}
  ],
  "page_size": 0,
  "truncated": true,
  "source_url": "<string>",
  "record_count": 0,
  "pages_fetched": 0,
  "applied_filters": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0c401c83-726a-49eb-b35e-430d9d901813/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0c401c83-726a-49eb-b35e-430d9d901813",
    "variables": {
        "country": "DE",
        "beneficiary_national_id": "",
        "beneficiary_name": "Siemens",
        "max_pages": 20
    }
}'

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="0c401c83-726a-49eb-b35e-430d9d901813") — the "search_state_aid_grants" function, which searches https://webgate.ec.europa.eu for company state aid grants within an EU member state, optionally filtered by beneficiary national ID or name. Returns complete record fields and automatically iterates result pages in batches of 25..

It takes country (str), beneficiary_national_id (str), beneficiary_name (str), max_pages (int). Return the result as structured JSON.