Discover/Europa API
live

Europa APIwebgate.ec.europa.eu

Search EU state aid grants awarded to companies across all member states. Filter by country, beneficiary name, or national ID. Returns amounts, dates, and granting authority.

This API takes change requests — .
Endpoint health
verified 3h ago
search_grants
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Europa API?

The webgate.ec.europa.eu API exposes one endpoint — search_grants — that returns paginated records from the European Commission's State Aid Transparency Register, covering grants awarded across EU member states. Each record includes aid measure details, monetary amounts, award dates, granting authority information, and beneficiary identifiers. You can filter results by ISO country code, beneficiary national ID, or company name to trace public subsidies at the firm level.

This call costs2 credits / call— charged only on success
Try it
Page number for paginated results.
ISO 3166-1 alpha-2 country code identifying the EU member state (e.g. 'DE' for Germany, 'FR' for France, 'ES' for Spain).
National identifier of the beneficiary company (e.g. 'HRB 42243' for a German company).
Name or partial name of the beneficiary company to search for (e.g. 'BMW', 'Renault').
api.parse.bot/scraper/3c61cd5e-a165-4c1e-b53c-962d33f4aaeb/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3c61cd5e-a165-4c1e-b53c-962d33f4aaeb/search_grants?page=1&country=DE&beneficiary_id=HRB+42243&beneficiary_name=BMW' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace webgate-ec-europa-eu-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: EC State Aid Transparency SDK — bounded, re-runnable; every call capped."""
from parse_apis.webgate_ec_europa_eu_api import ECTransparency, InvalidCountry

client = ECTransparency()

# Search grants for German companies matching "BMW"
for grant in client.grants.search(country="DE", beneficiary_name="BMW", limit=3):
    print(grant.beneficiary_name, grant.sa_number, grant.aid_element)

# Search by beneficiary national ID
item = client.grants.search(country="DE", beneficiary_id="HRB 42243", limit=1).first()
if item:
    print(item.ref_no, item.date_granted, item.granting_authority)

# Typed error handling for invalid country
try:
    for g in client.grants.search(country="XX", limit=1):
        print(g.beneficiary_name)
except InvalidCountry as e:
    print("invalid country:", e.country)

print("exercised: grants.search")
All endpoints · 1 totalmissing one? ·

Search state aid grants awarded to companies within a given EU member state. Results can be filtered by beneficiary national ID or beneficiary name. Returns paginated grant records including aid measure details, amounts, dates, and granting authority information. Results are auto-iterated across pages of 25 records each.

Input
ParamTypeDescription
pageintegerPage number for paginated results.
countryrequiredstringISO 3166-1 alpha-2 country code identifying the EU member state (e.g. 'DE' for Germany, 'FR' for France, 'ES' for Spain).
beneficiary_idstringNational identifier of the beneficiary company (e.g. 'HRB 42243' for a German company).
beneficiary_namestringName or partial name of the beneficiary company to search for (e.g. 'BMW', 'Renault').
Response
{
  "type": "object",
  "fields": {
    "page": "integer",
    "grants": "array of grant records with aid details",
    "per_page": "integer",
    "total_results": "integer, count of results on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "grants": [
        {
          "ref_no": "TM-10097598",
          "region": "Oberbayern",
          "sector": "Manufacture of motor vehicles",
          "country": "Germany",
          "objective": "Sectoral development",
          "sa_number": "SA.38632",
          "aid_element": "10,000,001 to 30,000,000 EUR",
          "national_id": "HRB_42243",
          "date_granted": "31/07/2016",
          "aid_instrument": "Tax advantage or tax exemption",
          "nominal_amount": "",
          "published_date": "24/04/2018",
          "beneficiary_name": "BMW AG",
          "beneficiary_type": "Only large enterprises",
          "entrusted_entity": "",
          "aid_measure_title": "EEG 2014",
          "granting_authority": "Übertragungsnetzbetreiber (50Hertz Transmission, Amprion, Tennet TSO, TransnetBW)en",
          "financial_intermediaries": ""
        }
      ],
      "per_page": 25,
      "total_results": 9
    },
    "status": "success"
  }
}

About the Europa API

What the API Returns

The search_grants endpoint queries the EU State Aid Transparency Register and returns paginated grant records. Each page of results includes the total result count (total_results), the current page number (page), records per page (per_page), and the grants array containing individual award details. Each grant record carries aid measure metadata, the monetary amount awarded, the date of award, the granting authority, and beneficiary identification details.

Filtering and Pagination

The only required parameter is country, which accepts an ISO 3166-1 alpha-2 code (e.g., DE, FR, ES, PL). You can narrow results further with beneficiary_id — a national company identifier such as a trade register number — or beneficiary_name for a name or partial-name search. The page parameter controls which page of results is returned, and total_results tells you how many records matched on the current page.

Coverage and Source

The underlying data is drawn from the European Commission's mandatory state aid transparency publication requirement, which applies to individual aid awards above EUR 500,000 in most sectors. Coverage spans all EU member states that have submitted reporting data. Not every member state's data is equally complete or up to date, as reporting obligations and submission timelines vary.

Reliability & maintenanceVerified

The Europa API is a managed, monitored endpoint for webgate.ec.europa.eu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when webgate.ec.europa.eu changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official webgate.ec.europa.eu API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Audit which companies in a specific EU country received state aid above disclosure thresholds by filtering with the country parameter.
  • Track subsidies awarded to a named company across multiple EU member states using beneficiary_name searches.
  • Look up all grants tied to a specific legal entity using its national trade register number via beneficiary_id.
  • Monitor which granting authorities in a given country are most active in distributing state aid.
  • Build a compliance database mapping aid measure IDs to recipient companies and award dates.
  • Cross-reference grant amounts and dates with company financial filings to assess the impact of public funding.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does the European Commission provide an official developer API for the State Aid Transparency Register?+
The European Commission does not publish a documented public REST API for the State Aid Transparency Register. The data is accessible through a web interface at webgate.ec.europa.eu, and bulk data exports are available via the EU Open Data Portal (data.europa.eu), but there is no supported programmatic query API with structured JSON responses.
What fields does a single grant record in the `grants` array contain?+
Each grant record includes the aid measure identifier and details, the awarded amount, the award date, the granting authority name, and beneficiary identification fields such as the national ID and company name. The exact set of subfields reflects what member states are required to report under EU transparency obligations.
Does `total_results` reflect the full dataset size or just the current page?+
Based on the endpoint definition, total_results is the count of results on the current page, not the grand total across all pages. To determine full dataset size for a query, you need to iterate pages and accumulate counts, or infer from per_page and page values.
Can I retrieve grant data for non-EU countries or candidate states?+
The API covers EU member states only, using ISO 3166-1 alpha-2 country codes. Candidate countries, EEA members, and third countries are not included in the State Aid Transparency Register data. You can fork this API on Parse and revise it to point to other transparency data sources if you need coverage beyond EU member states.
Does the API return historical grant data or only recent awards?+
The API queries the full Transparency Register dataset, which includes historical awards going back several years. However, data completeness for older records depends on what member states have submitted. Grants below the EUR 500,000 reporting threshold are generally not included. You can fork this API on Parse and revise it to add date-range filtering if the current endpoint does not expose that parameter.
Page content last updated . Spec covers 1 endpoint from webgate.ec.europa.eu.
Related APIs in Government PublicSee all →
grantwatch.com API
Search and browse thousands of grants from GrantWatch.com to find funding opportunities tailored to individuals, nonprofits, small businesses, and foundations. Get detailed grant information, filter by category, and discover newly posted grants to match your eligibility and funding needs.
simpler.grants.gov API
Search and discover federal funding opportunities available through Grants.gov, then retrieve detailed information about grants, loans, and other financial assistance programs that match your needs. Access comprehensive opportunity details including eligibility requirements, funding amounts, and application deadlines all in one place.
espa.gr API
Discover and browse EU funding programs available in Greece, view detailed information about each initiative, and stay updated with the latest news from the ESPA portal. Search across the database and explore program planning details to find opportunities relevant to your interests.
usaspending.gov API
Access data from usaspending.gov.
evergabe-online.de API
Search and retrieve public tender opportunities from Germany's e-Vergabe platform by keywords, contract types, CPV codes, and publication dates. Access detailed tender information and discover the latest procurement opportunities across construction and other sectors.
europages.fr API
Search for European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.
vergabe.rib.de API
Search and retrieve tender information, award notices, and EU prior information from the RIB eVergabe platform to stay updated on procurement opportunities and contract awards. Get detailed tender specifications and the latest news to monitor bidding opportunities and market developments.
bidsandtenders.com API
Search and discover public bid opportunities across Canada and the USA to find relevant procurement projects for your business. Access real-time tender data from the bids&tenders eProcurement platform to identify and pursue new contract opportunities.