# pagos.andreax.dev Web Page Reader

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

Fetches a web page by URL and returns its clean, readable text content stripped of HTML, scripts, and markup

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/leer-url
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/pagos-andreax-dev-web-page-reader-08dd039f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z4G7XBh3QUc7c13fFP9tl

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-web-page-reader-08dd039f
```

Example prompt: Can you read the content of this page for me — https://example.com/article — and give me the clean readable text without any HTML or scripts?

## When to prefer this

Choose this endpoint when an agent needs to read the readable text content of any public web page by URL without implementing its own HTTP client or HTML parser. It is ideal for quickly feeding web content into downstream LLM tasks (summarization, analysis, QA) at low cost per call. Prefer it over general-purpose browser automation tools when you only need clean text and not screenshots, structured DOM data, or JavaScript execution.

## Known failure modes

- URL is unreachable or returns a non-200 status (connection error or timeout)
- URL points to a binary file (PDF, image) rather than an HTML page
- URL requires authentication or is behind a login wall (returns login page text instead)
- Malformed or non-http(s) URL causes a validation error
- Page is JavaScript-rendered and content is not available in static HTML

## How this service works

Descarga una página web y devuelve su texto limpio y legible (sin HTML ni scripts). Úsalo para que un agente lea el contenido de una URL pagando por llamada. input=URL http(s).

## Output

Clean, human-readable plain text of the web page at the given URL, with all HTML tags, scripts, styles, and markup removed — just the visible content a human would read in a browser.

## 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 http(s) a leer"
      }
     }
    }
   },
   "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-web-page-reader-08dd039f/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)
