# X402 Cloud PDF Analyzer

> X402 Cloud PDF Analyzer is a paid API for AI agents from api.x402cloud.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Extracts and analyzes content from PDF documents, returning structured JSON results

## Facts

- Endpoint: POST https://api.x402cloud.space/api/v1/pdf-analyzer
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-cloud-pdf-analyzer-87289e1f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i3GyxDYjxNPYi1jNRFZtF

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 x402-cloud-pdf-analyzer-87289e1f -d '<json body>'
```

Example prompt: Can you analyze this PDF document and extract all the key data from it into structured JSON — I need the text, any tables, and metadata pulled out cleanly?

## When to prefer this

Choose this endpoint when you need AI-powered extraction and analysis of PDF documents and want results returned as structured JSON via a pay-per-call x402 micropayment model. It is particularly useful for agents that process documents on demand without requiring a subscription, and when the PDF may contain mixed content like text, tables, and metadata that benefit from AI interpretation.

## Known failure modes

- Invalid or inaccessible PDF input returns an error status
- Malformed or encrypted PDFs may fail to parse
- Missing required 'input' field causes validation error
- Oversized or complex documents may exceed processing limits
- Network or payment authorization failures return non-200 responses

## How this service works

Agent-ready x402 APIs for AI video production, audio localization, web research, document extraction, data analysis, and structured JSON transformation.

## Output

Returns a JSON object containing a status string, a unique request_id, and a result object with the extracted and analyzed content from the PDF. May also include usage metrics, payment details, model information, and any warnings generated during processing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object"
  },
  "options": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "status",
  "request_id",
  "result"
 ],
 "properties": {
  "usage": {
   "type": "object"
  },
  "result": {
   "type": "object",
   "additionalProperties": true
  },
  "status": {
   "type": "string"
  },
  "payment": {
   "type": "object",
   "additionalProperties": true
  },
  "warnings": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "model_used": {
   "type": "string"
  },
  "request_id": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-cloud-pdf-analyzer-87289e1f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402cloud.space](https://www.zero.xyz/host/api.x402cloud.space/llms.txt)
