# extract.vevang.com Web Reader

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

Fetches any public URL and returns its main content as clean, boilerplate-free markdown with title, description, and links — ready for LLM ingestion.

## Facts

- Endpoint: POST https://extract.vevang.com/read
- 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/extract-vevang-com-web-reader-c97eb6a7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_n4TtB4-4T-cpyb6poGt-h

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 extract-vevang-com-web-reader-c97eb6a7 -d '<json body>'
```

Example prompt: Can you read https://www.bbc.com/news/technology-12345678 and give me the main article content as clean markdown, without ads or navigation?

## When to prefer this

Choose this endpoint when you need to convert any public web page into clean, LLM-ready markdown quickly and cheaply ($0.01/call), especially for RAG ingestion, research agents, or any pipeline that needs readable text stripped of ads and navigation. It is ideal for single-URL reads where structured JSON output is not required — use the sibling structured endpoint if you need the result shaped into specific JSON fields.

## Known failure modes

- URL is behind a login/paywall — returns empty or partial content
- JavaScript-heavy single-page apps may not render fully — content may be incomplete
- Invalid or non-HTTP URL returns a validation error
- Target server blocks scraping bots — may return empty body or error
- Network timeout if target URL is slow to respond

## How this service works

AI Web Extractor — turn ANY url into clean, LLM-ready markdown. POST {url}; get the main content as markdown (boilerplate/nav/ads stripped) with title, description, and links. The scrape / read / url-to-markdown primitive for RAG and research agents. Fast, cheap, x402-native.

## Output

A structured response containing the main body content of the requested webpage rendered as clean markdown (boilerplate, navigation, and ads stripped), along with the page title, meta description, and a list of extracted links.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "the public http(s) URL to read"
  }
 }
}
```

## More

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