# Strale GDPR Fine Lookup

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

Look up GDPR enforcement fines for a company or country, returning structured fine records with audit trail.

## Facts

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

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 strale-gdpr-fine-lookup-c1e89830
```

Example prompt: Can you look up all the GDPR fines that have been issued against Amazon, and filter by Germany if possible?

## When to prefer this

Use this endpoint when you need structured, independently verified GDPR fine data with a cryptographic audit trail — ideal for compliance due diligence, vendor risk assessment, or regulatory research. Prefer it over manual web searches when you need machine-readable, auditable output for 27 supported countries.

## Known failure modes

- No fines found for the specified company or country (empty result set)
- Invalid or unrecognized country_code returns an error
- Company name ambiguity may return multiple or zero matches
- Network timeout or upstream data source unavailability
- Payment failure (insufficient USDC balance for x402 micropayment)

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns structured records of GDPR fines matching the query, including fine amounts, issuing data protection authority, date of fine, violation summary, and an audit record with cryptographic chain hash for traceability.

## 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/strale-gdpr-fine-lookup-c1e89830/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)
