# Batch Page Reader

> Batch Page Reader is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches up to 5 URLs and returns each page as clean extracted text with title, including JavaScript-rendered SPAs and dynamic dashboards that server-side fetches cannot read.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/web-extract
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/batch-page-reader-e7397a6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j2nlVhhaAdkVZkawM98vs

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 batch-page-reader-e7397a6d
```

Example prompt: Can you fetch and extract the text from these three pages for me: https://app.example.com/dashboard, https://spa.example.com/about, and https://docs.example.com/intro — they're all JavaScript-rendered so a plain fetch won't work.

## When to prefer this

Choose this endpoint when you need to extract text from JavaScript-rendered pages (SPAs, React/Vue/Angular apps, dashboards) that a plain server-side HTTP fetch cannot read, or when you need to batch up to 5 URLs in a single call. For a single static HTML page, the cheaper url-extract endpoint is preferable. This endpoint handles partial failures gracefully, so mixed batches of working and broken URLs are safe to submit.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — page appears in 'failed' list with reason
- Page requires authentication or login — content may be empty or login-wall text
- Malformed or non-HTTP URL provided — validation error or failure entry returned
- All 5 URLs fail — call is not charged
- More than 5 URLs provided — request rejected or truncated
- Timeout rendering a heavy JavaScript page — failure entry with timeout reason

## How this service works

Pass up to 5 URLs (comma-separated) and get each page back as clean text with its title. Renders pages that build their content in the browser, which a plain server-side fetch cannot read at all — so it covers the SPAs, dashboards and app pages that url-extract deliberately refuses. Returns partial success: pages that fail come back in a `failed` list with the reason, and a call where every URL fails is not charged. For a single static page, url-extract is cheaper.

## Output

Returns a list of successfully fetched pages, each with its URL, page title, and clean extracted body text. Pages that could not be fetched appear in a separate 'failed' list with a reason for failure. A call where every URL fails is not charged.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "urls"
     ],
     "properties": {
      "urls": {
       "type": "string",
       "description": "URLs (comma-separated, max 5)"
      }
     }
    }
   },
   "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/batch-page-reader-e7397a6d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
