# Strale Privacy Policy Analyzer

> Strale 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).

Fetches and analyzes a company's privacy policy from its website URL, returning structured findings about data practices and compliance signals.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/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/strale-privacy-policy-analyzer-6c9f566a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xCOllruBVIrKGWwZwh2Qh

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-privacy-policy-analyzer-6c9f566a
```

Example prompt: Can you analyze the privacy policy of stripe.com and tell me what kind of user data they collect, whether they share it with third parties, and any notable compliance risks?

## When to prefer this

Choose this endpoint when you need a quick, structured assessment of a company's privacy policy directly from their website without manual reading. Ideal for vendor risk workflows, compliance checks, or user-facing transparency features where you need machine-readable privacy signals with a verifiable audit trail. Prefer over generic web scrapers when you need privacy-specific extraction logic and cryptographic proof of the analysis.

## Known failure modes

- URL not accessible or returns non-200 status — policy cannot be fetched
- No privacy policy found at the provided domain — empty or error response
- Privacy policy in unsupported language or format — reduced extraction accuracy
- Rate limiting or payment failure — 402 or 429 response
- Malformed or missing URL query parameter — 400 validation 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 structured analysis of the company's privacy policy including data collection categories, third-party sharing disclosures, retention policies, user rights provisions, and compliance signals. Each call also includes a cryptographic audit record with chain hashing for tamper-evident logging.

## 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/strale-privacy-policy-analyzer-6c9f566a/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)
