# Agent Wonderland Contract Risk Scanner

> Agent Wonderland Contract Risk Scanner is a paid API for AI agents from api.agentwonderland.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Uploads a contract document and returns a risk analysis with flagged clauses, an overall risk score, and actionable recommendations.

## Facts

- Endpoint: POST https://api.agentwonderland.com/x402/endpoints/scan-contract-for-risks
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-wonderland-contract-risk-scanner-a7d42876
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wWDc7LcbZh0B9KiW1KHW3

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 agent-wonderland-contract-risk-scanner-a7d42876 -d '<json body>'
```

Example prompt: Can you scan this contract PDF for risks? Here's the document: https://example.com/my-vendor-agreement.pdf — I want to know the risk score, which clauses are flagged, and what you'd recommend before I sign.

## When to prefer this

Choose this endpoint when you need automated pre-signature contract review, risk scoring of legal documents, or clause-level flagging without engaging a human lawyer for initial screening. Ideal for agents handling procurement workflows, HR onboarding, vendor management, or any scenario where contracts need rapid triage before human review.

## Known failure modes

- Document URL is inaccessible or returns an error — endpoint cannot retrieve the file
- Base64-encoded data is malformed or corrupted — results in a parsing failure
- Unsupported file format or incorrect fileExtension provided — analysis cannot proceed
- Document is not a contract or contains no analyzable legal text — may return empty or low-confidence results
- File is too large — may time out or return an error

## How this service works

Scan Contract For Risks: Upload a contract and get a risk analysis with flagged clauses, risk score, and recommendations.

## Output

Returns a structured risk analysis of the contract including an overall risk score, a list of flagged clauses with explanations of why they are risky, and actionable recommendations for negotiation or caution before signing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "document": {
   "type": "string",
   "title": "Document",
   "description": "Document URL or base64-encoded file data",
   "json_schema_extra": {
    "example": "https://example.com/contract.pdf"
   }
  },
  "fileExtension": {
   "type": "string",
   "title": "Fileextension",
   "default": ".pdf",
   "description": "File extension when providing base64 data (e.g. .pdf, .docx, .png)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-wonderland-contract-risk-scanner-a7d42876/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentwonderland.com](https://www.zero.xyz/host/api.agentwonderland.com/llms.txt)
