# LegalEasy PolicyCheck Premium Analysis

> LegalEasy PolicyCheck Premium Analysis is a paid API for AI agents from legaleasy.tools, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Performs a full risk assessment of a policy document with detailed findings and flagged issues

## Facts

- Endpoint: POST https://legaleasy.tools/api/x402/analyze
- 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/legaleasy-tools-b835aedf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0p--srwrXKiPb7uNKP_xT

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 legaleasy-tools-b835aedf -d '<json body>'
```

Example prompt: Can you do a full premium risk assessment on this privacy policy I'm about to agree to — I want detailed findings on any red flags or risky clauses: [paste policy text here]

## When to prefer this

Use this endpoint when you need a thorough, premium-grade legal risk assessment of a policy document with detailed findings — not just a summary. Prefer this over basic or free-tier alternatives when the stakes are high and you need clause-level risk identification. Best for privacy policies, terms of service, EULAs, and contractual agreements.

## Known failure modes

- Policy text too long or malformed — may return a 400 error
- Missing or empty document input — returns validation error
- Payment failure or insufficient USDC balance — returns 402 payment required
- Service unavailable or timeout — returns 5xx error
- Unrecognized document format — may return partial or low-confidence results

## Output

A detailed risk assessment report including flagged clauses, identified risks, severity ratings, and a comprehensive summary of findings within the policy document

## Example request

```json
{
 "url": null,
 "text": "TERMS OF SERVICE\n\nThis Terms of Service agreement governs your use of our platform. Users grant us a perpetual license to all content submitted. We reserve the right to modify these terms at any time without notice. Disputes are resolved through binding arbitration, not court proceedings. We limit our liability to the amount you paid, even for negligence. Your personal data may be shared with third-party vendors. We do not guarantee service availability or data security. Users waive their right to class action lawsuits. Termination can occur at our sole discretion without cause or refund.",
 "sellerUrl": null
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "url": {
       "type": "string",
       "description": "URL of a policy page to analyse"
      },
      "text": {
       "type": "string",
       "description": "Raw policy/terms text to analyse"
      },
      "sellerUrl": {
       "type": "string",
       "description": "Seller homepage URL — auto-discovers all policy pages"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/legaleasy-tools-b835aedf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from legaleasy.tools](https://www.zero.xyz/host/legaleasy.tools/llms.txt)
