# GDPR Compliance Scanner

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

Scans a website URL for GDPR compliance issues including cookie consent, privacy policy presence, and third-party trackers

## Facts

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

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-compliance-scanner-34ac53cd
```

Example prompt: Can you scan https://example.com for GDPR compliance and tell me whether it has a cookie consent banner, a privacy policy, and any third-party trackers running on it?

## When to prefer this

Use this endpoint when you need a quick automated GDPR compliance check on a specific website URL, particularly to verify presence of cookie consent banners, privacy policies, and tracker usage without manually auditing the site. Ideal for compliance monitoring workflows or pre-launch website audits.

## Known failure modes

- Invalid or unreachable URL returns an error
- Timeout if the target website is slow or unresponsive
- Paywalled or bot-protected sites may not be fully scannable
- Missing required 'url' query parameter returns a validation error
- Non-HTTP URLs may be rejected

## How this service works

Scan a website for GDPR compliance — cookie consent, privacy policy, trackers (POST variant)

## Output

Returns a GDPR compliance report for the scanned website, including whether cookie consent mechanisms are present, whether a privacy policy is detectable, and a list of identified third-party trackers or potentially non-compliant data collection practices.

## 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"
    }
   }
  }
 }
}
```

## More

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