# Edpb 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.

> Access comprehensive European Data Protection Board opinions with filtering by status, tags, and dates, plus direct links to PDF documents. Stay informed on EDPB consistency findings and regulatory guidance relevant to data protection compliance.

**Category:** Government & Public Data | **Website:** [www.edpb.europa.eu/our-work-tools/consistency-findings/opinions_en](https://www.edpb.europa.eu/our-work-tools/consistency-findings/opinions_en) | **Docs:** [parse.bot/marketplace/f556d5ad-f62e-44c0-b63d-e249739fbc28/edpb-europa-eu-api](https://parse.bot/marketplace/f556d5ad-f62e-44c0-b63d-e249739fbc28/edpb-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-edpb-europa-eu-api-f556d5ad/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_opinions

Fetch EDPB opinions with their publication type, topics, dates, and detail page URLs. Paginates through the EDPB documents listing filtered to compliance instruments (opinions). By default fetches all pages; use the page_limit parameter to restrict the number of pages fetched. Each opinion includes title, URL, date, publication type list, and topics list. Member states and PDF links are not available on the listing page and are returned as empty list and null respectively.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Starting page number (0-indexed). |
| `page_limit` | integer | No | Number of upstream pages to fetch. 0 fetches all available pages. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-edpb-europa-eu-api-f556d5ad/get_opinions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_limit":"<integer>"}'
```
