# GDPR Website Compliance Scanner

> GDPR Website Compliance Scanner is a paid API for AI agents from api.strale.io, paid per call via x402, $0.108001/call, status healthy (last checked 2026-09-15, last successful call 2026-09-13).

Scans a website URL for GDPR compliance indicators including cookie consent, privacy policy, tracking scripts, and security headers, returning a letter grade from A to F.

## Facts

- Endpoint: GET https://api.strale.io/x402/gdpr-website-check
- Price: $0.108001/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-13
- Success rate: 100% of calls made through Zero
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-0705c612
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NSB3B5J3VfYFtcDDCQouP

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 api-strale-io-0705c612
```

Example prompt: Can you check whether https://example.com is GDPR compliant — I want to know if they have cookie consent, a privacy policy, and proper security headers, and what letter grade they score overall?

## When to prefer this

Use this endpoint when you need a quick, scored GDPR compliance audit of a specific website, particularly when you want a structured A–F grade alongside individual checks for cookie consent, privacy policy, tracking scripts, and security headers. Prefer this over the sibling cookie-only scan endpoint when you need the full GDPR picture including security headers and an overall grade.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- Website blocks automated scanning (403/bot protection) causing incomplete results
- Dynamic cookie consent banners loaded via JavaScript may not be detected
- Missing 'url' query parameter causes schema validation failure

## How this service works

Scan a website for GDPR compliance indicators: cookie consent, privacy policy, tracking scripts, security headers. Returns score A-F.

## Output

Returns a letter grade (A–F) summarizing overall GDPR compliance, along with individual indicators for cookie consent banners, privacy policy presence, third-party tracking scripts detected, and security header configuration.

## Example request

```json
{
 "url": "https://example.com"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "grade": {
  "type": "string"
 },
 "gdpr_score": {
  "type": "integer"
 },
 "tracking_scripts": {
  "type": "object"
 },
 "has_cookie_consent": {
  "type": "boolean"
 },
 "has_privacy_policy": {
  "type": "boolean"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-0705c612/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)
