# Privacy Policy Analyzer

> Privacy Policy Analyzer is a paid API for AI agents from api.strale.io, paid per call via x402, $0.324/call, status unknown (last checked 2026-09-15).

Analyzes a company's privacy policy by extracting data collected, purposes, third parties, user rights, and GDPR/CCPA compliance signals from its website URL.

## Facts

- Endpoint: GET https://api.strale.io/x402/privacy-policy-analyze
- Price: $0.324/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-4e8e5dcd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OuiytbE6keuz2wZu5JunO

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-4e8e5dcd
```

Example prompt: Can you analyze the privacy policy on Notion's website (notion.so) and tell me what data they collect, who they share it with, what user rights they provide, and whether it looks GDPR and CCPA compliant?

## When to prefer this

Choose this endpoint when you need structured, machine-readable extraction of privacy policy details from a company's public website — particularly when assessing GDPR/CCPA compliance signals, auditing data collection practices, or comparing privacy practices across companies. Prefer this over manual review or generic web scraping because it returns structured compliance-focused output.

## Known failure modes

- URL does not have a discoverable privacy policy page — returns no results or an error
- Website blocks automated access (bot detection) — returns an access error
- URL is unreachable or returns a non-200 response — returns a fetch error
- Privacy policy is behind a login wall — content cannot be extracted
- Policy is in an unsupported language — extraction quality may be degraded

## How this service works

Analyze a company's privacy policy. Extracts data collected, purposes, third parties, user rights, GDPR/CCPA compliance signals.

## Output

Returns structured data extracted from the company's privacy policy including: categories of data collected, stated purposes for collection, third-party services or partners mentioned, user rights (access, deletion, portability, etc.), and signals indicating GDPR and/or CCPA compliance or non-compliance.

## Example request

```json
{
 "url": "https://www.notion.so"
}
```

## 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",
       "description": "Company website URL"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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