# GDPR Fine Lookup

> GDPR Fine Lookup is a paid API for AI agents from api.strale.io, paid per call via x402, $0.216001/call, status unknown (last checked 2026-09-14).

Look up GDPR enforcement fines by company name or country, returning fine amounts, issuing authorities, and articles violated.

## Facts

- Endpoint: GET https://api.strale.io/x402/gdpr-fine-lookup
- Price: $0.216001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-f6228aa7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tp6hZllQVzXYnBVTrRrgb

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-strale-io-f6228aa7
```

Example prompt: Can you look up all GDPR fines that have been issued against Meta — show me the fine amounts, which authorities issued them, and which GDPR articles were violated?

## When to prefer this

Use this endpoint when you need structured, queryable GDPR enforcement data by company or country without manually scraping the GDPR enforcement tracker. Ideal for compliance research, competitive analysis, legal due diligence, or monitoring regulatory risk for specific companies or jurisdictions.

## Known failure modes

- Company not found in database — returns empty results
- Invalid country_code format — returns validation error
- No fines recorded for the specified country — returns empty results
- Network timeout or service unavailability — returns 5xx error

## How this service works

Look up GDPR enforcement fines by company name or country. Returns fine amounts, authorities, articles violated.

## Output

Returns a list of GDPR enforcement records matching the query, each including the company name, fine amount, issuing supervisory authority, GDPR articles violated, and enforcement date.

## Example request

```json
{
 "company": "Meta",
 "country_code": "EU"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "company": {
       "type": "string"
      },
      "country_code": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-f6228aa7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
