# Readable Batch URL-to-Markdown Converter

> Readable Batch URL-to-Markdown Converter is a paid API for AI agents from readable.x.c00l.site, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Converts multiple web page URLs in a single request to clean, LLM-ready Markdown with boilerplate removed, GFM tables, fenced code blocks, and absolute links, billed per call in USDC via x402.

## Facts

- Endpoint: POST https://readable.x.c00l.site/batch
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/readable-batch-url-to-markdown-converter-d0b665ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_s_AbndATa-rgANVbdyPBT

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 readable-batch-url-to-markdown-converter-d0b665ad -d '<json body>'
```

Example prompt: Fetch these three URLs and convert them all to clean markdown so I can use the content as context: https://example.com/article-1, https://example.com/article-2, and https://example.com/article-3.

## When to prefer this

Choose this endpoint when you need to convert multiple URLs to markdown in a single API call, reducing round-trip overhead compared to calling a single-URL endpoint repeatedly. It is ideal for RAG pipelines, research agents, and document ingestion workflows where you have a known list of URLs and want clean, LLM-optimized markdown with boilerplate stripped. Prefer it over generic scraping tools when the output format needs to be GFM-compliant with fenced code blocks and absolute links specifically for LLM consumption.

## Known failure modes

- Upstream page returns non-200 HTTP status (e.g. 404, 403) — individual result has ok:false with code 'upstream_status'
- URL is unreachable or times out — individual result fails with a network error code
- Malformed or invalid URL in the batch — result fails with a validation error
- Payment not completed or insufficient USDC balance via x402 — request rejected before processing
- Rate limiting or server overload — entire request may return 429 or 503

## How this service works

A paid HTTP API that turns any web page into clean, LLM-ready Markdown. Boilerplate removal, GFM tables, fenced code, absolute links. $0.004 per call, paid in USDC on Base via x402.

## Output

A JSON object containing a count of submitted URLs, the number that succeeded and failed, and a results array where each entry includes the original URL, a boolean ok flag, and on success: the page title, full markdown content, and word count; on failure: an error code and human-readable message.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "failed": 1,
  "results": [
   {
    "ok": true,
    "url": "https://example.com/",
    "title": "Example Domain",
    "content": "# Example Domain\n\n…",
    "wordCount": 30
   },
   {
    "ok": false,
    "url": "https://example.org/",
    "error": {
     "code": "upstream_status",
     "message": "Upstream returned HTTP 404."
    }
   }
  ],
  "succeeded": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/readable-batch-url-to-markdown-converter-d0b665ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from readable.x.c00l.site](https://www.zero.xyz/host/readable.x.c00l.site/llms.txt)
