# Strale GDPR Website Check

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

Checks whether a website is GDPR-compliant by fetching and analyzing its public-facing content for compliance signals.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/gdpr-website-check
- Price: $0.108/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-website-check-fbfd13d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B3a34x-efMkO-zKjIn1hB

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-website-check-fbfd13d8
```

Example prompt: Can you run a GDPR compliance check on https://www.example.com and tell me whether it meets EU data protection requirements?

## When to prefer this

Use this endpoint when you need a quick, independently audited GDPR compliance signal for any publicly accessible website, especially in vendor onboarding, due diligence workflows, or automated compliance monitoring pipelines. The cryptographic audit trail makes it suitable for regulated environments where you need provable evidence of the check having been performed.

## Known failure modes

- URL is unreachable or returns a non-200 status — endpoint may error or return incomplete results
- Website blocks automated GET requests (e.g. bot protection) — check may fail or return inaccurate results
- Malformed or missing URL query parameter — returns validation error
- Website is not publicly accessible (behind login or firewall) — compliance check cannot proceed
- Rate limiting or payment failure — returns 402 or rate-limit error

## 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 GDPR compliance assessment for the given website URL, including compliance status indicators and an audit record with a cryptographic chain hash for verifiability. May include checks for presence of privacy policy, cookie consent mechanisms, and other GDPR-required notices.

## 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",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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