# toolcall.click Web Reader

> toolcall.click Web Reader is a paid API for AI agents from toolcall.click, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-15).

Fetches any public web page (including JavaScript-rendered pages) using a real browser and returns the main content as clean markdown, text, or HTML with title and byline

## Facts

- Endpoint: GET https://toolcall.click/t/web/reader
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-web-reader-334797c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_86JfO9OASgf_2N2e0MZID

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 toolcall-click-web-reader-334797c8
```

Example prompt: Can you fetch the content of https://www.bbc.com/news/science-environment-123456 and give me the main article text as clean markdown so I can summarize it?

## When to prefer this

Use this endpoint when you need to extract clean, readable content from a public web page — especially JavaScript-rendered pages — and feed it to an LLM or display it in a readable format. Prefer this over raw HTTP fetching when the page requires browser rendering, or when you want boilerplate stripped automatically. Use the sibling PDF endpoint for PDF URLs instead.

## Known failure modes

- Page URL is not publicly accessible or requires authentication — content cannot be fetched
- JavaScript-heavy SPA with anti-bot measures may fail to render fully
- PDF or binary file URL passed instead of an HTML page — use the PDF endpoint instead
- Invalid or malformed URL returns an error
- Page takes too long to render and times out
- Paywalled content may only return the teaser/preview
- Payment not processed via x402 returns 402 Payment Required

## How this service works

Turn any public web page, including JavaScript-heavy ones, into clean readable markdown (or text/html) with title and byline. Rendered by a real browser then stripped to the main content. Ideal for feeding pages to LLMs. JSON response. $0.006 USDC per call, pay via x402, no API key.

## Output

A JSON response containing the page title, byline (author/date if detected), and the main body content in the requested format (markdown by default, or plain text or HTML), stripped of navigation, ads, and other boilerplate.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public page URL"
      },
      "format": {
       "enum": [
        "markdown",
        "text",
        "html"
       ],
       "type": "string",
       "description": "Output format, default markdown"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/article",
  "chars": 5210,
  "title": "Example",
  "content": "# Heading..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/toolcall-click-web-reader-334797c8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolcall.click](https://www.zero.xyz/host/toolcall.click/llms.txt)
