# pagos.andreax.dev PDF Reader

> pagos.andreax.dev PDF Reader is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Downloads a PDF from a given URL and returns its extracted plain text content

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/leer-pdf
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagos-andreax-dev-pdf-reader-5133d3a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wbXlnFSNQAZ7kl_9oH2Nm

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 pagos-andreax-dev-pdf-reader-5133d3a5
```

Example prompt: Can you read this PDF for me and pull out the text? The file is at https://example.com/annual-report-2024.pdf

## When to prefer this

Use this endpoint when an agent needs to read the text content of a PDF hosted at a public HTTP(S) URL — such as reports, contracts, research papers, or manuals — without needing OCR or local file uploads. It is a pay-per-call service well-suited for agentic pipelines that occasionally need to ingest PDFs on demand.

## Known failure modes

- Invalid or unreachable URL returns an error
- Non-PDF content at the URL may fail to parse
- Password-protected PDFs cannot be extracted
- Very large PDFs may time out or return partial text
- Scanned image-only PDFs may return empty or minimal text (no OCR)

## How this service works

Descarga un PDF desde una URL y devuelve su texto extraído. Para que un agente lea documentos (informes, contratos, papers) pagando por llamada. input=URL http(s) de un PDF.

## Output

Returns the plain text extracted from the PDF document at the provided URL, enabling downstream reading, summarization, search, or analysis of the document's content

## 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": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "URL de un PDF"
      }
     }
    }
   },
   "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/pagos-andreax-dev-pdf-reader-5133d3a5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
