# Strale GDPR Audit

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

Audits a given URL for GDPR compliance, returning a structured audit record with cryptographic chain hashing and country-specific DPA references.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/solutions/gdpr-audit
- Price: $1.08/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-audit-289736fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fNBSnwNsP3F_vumihqPbN

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-audit-289736fc -d '<json body>'
```

Example prompt: Run a GDPR audit on https://www.example.com for Germany — I need a compliance report with the relevant DPA reference and a cryptographic audit record I can use as proof.

## When to prefer this

Choose this endpoint when you need a verifiable, cryptographically hashed GDPR compliance audit tied to a specific EU country's DPA — especially when you need tamper-proof documentation for legal, compliance, or client-reporting purposes. Prefer this over generic privacy checkers when audit provenance and country-specific regulatory references matter.

## Known failure modes

- Invalid or unreachable URL returns an error indicating the resource could not be fetched
- Unsupported or invalid ISO 3166-1 alpha-2 country code returns a validation error
- URL behind authentication or bot protection may result in incomplete or failed audit
- Payment failure (insufficient USDC balance) prevents execution
- Timeout if the target URL responds too slowly

## 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 a structured GDPR compliance audit record for the submitted URL, including compliance findings, the relevant national Data Protection Authority (DPA) reference for the specified country, and a cryptographic chain hash that provides a tamper-evident audit trail of the result.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri"
      },
      "country_code": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 (for DPA lookup)"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-gdpr-audit-289736fc/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)
