# Webgate Ec Europa — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for EU state aid grants awarded to companies by country and beneficiary details to track public funding and subsidies. Find comprehensive transparency data on who received grants, where, and when to monitor government financial support across Europe.

**Category:** Government & Public Data | **Website:** [webgate.ec.europa.eu/competition/transparency/public?lang=es](https://webgate.ec.europa.eu/competition/transparency/public?lang=es) | **Docs:** [parse.bot/marketplace/05dad1d0-4dd1-4f5e-945c-43ef6fe0e6e3/webgate-ec-europa-eu-api](https://parse.bot/marketplace/05dad1d0-4dd1-4f5e-945c-43ef6fe0e6e3/webgate-ec-europa-eu-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-webgate-ec-europa-eu-api-05dad1d0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_grants

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `beneficiary_id` | string | No | National identifier of the beneficiary company (e.g. 'HRB 42243' for a German company). |
| `beneficiary_name` | string | No | Name or partial name of the beneficiary company to search for (e.g. 'BMW', 'Renault'). |
| `country` | string | Yes | ISO 3166-1 alpha-2 country code identifying the EU member state (e.g. 'DE' for Germany, 'FR' for France, 'ES' for Spain). |
| `page` | integer | No | Page number for paginated results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-webgate-ec-europa-eu-api-05dad1d0/search_grants \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"beneficiary_id":"<string>","beneficiary_name":"<string>","country":"<string>","page":"<integer>"}'
```
