# GDPR Scanner API

> GDPR Scanner API is a paid API for AI agents from klymax402.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Scans a website URL for GDPR compliance issues, including cookies, trackers, consent banners, and privacy policy presence

## Facts

- Endpoint: GET https://klymax402.com/api/gdpr-scanner/api/scan
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gdpr-scanner-api-d00aa725
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lOz1JWKhoQ_EQadS4iDHj

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 gdpr-scanner-api-d00aa725
```

Example prompt: Can you scan https://example.com for GDPR compliance and tell me whether it has a consent banner, what trackers it uses, and what its overall compliance score is?

## When to prefer this

Use this endpoint when you need a quick, automated GDPR compliance check on a public-facing website — particularly to verify consent banner presence, detect third-party trackers, and get a compliance score without manually auditing the site. Prefer this over manual inspection or full legal audit tools when you need fast, programmatic results at low cost.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Private/localhost URLs may not be accessible
- Sites with heavy bot protection may not be fully scanned
- Missing required 'url' query parameter returns a validation error
- Payment failure (insufficient USDC) blocks request execution

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

A JSON object containing: the scanned URL, a numeric GDPR compliance score, a list of detected compliance issues, identified cookies and their details, detected third-party trackers, consent banner presence and configuration, and privacy policy detection status.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Website URL to scan for GDPR compliance (e.g. https://example.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "example",
  "score": 1,
  "issues": [],
  "cookies": {},
  "trackers": [],
  "consentBanner": {},
  "privacyPolicy": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gdpr-scanner-api-d00aa725/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
