# 17711 Web Scraper – Extract Markdown

> 17711 Web Scraper – Extract Markdown is a paid API for AI agents from api.17711.xyz, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-14).

Fetches a web page from a given URL and returns its content as clean Markdown text, along with metadata like title, status, and final URL.

## Facts

- Endpoint: POST https://api.17711.xyz/registry/web-scraper/v1/web-scraper/extract_markdown
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/17711-web-scraper-extract-markdown-4758c2f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RSVyZltG47o7AmI7z95Qb

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 17711-web-scraper-extract-markdown-4758c2f9 -d '<json body>'
```

Example prompt: Can you scrape the page at https://example.com/article and give me its content as markdown so I can read and process it?

## When to prefer this

Choose this endpoint when you need to fetch a single web page and get its content as clean, readable Markdown — ideal for article extraction, content summarization pipelines, or feeding web content into an LLM. It is priced per-call at $0.007 USDC via x402, making it cost-effective for on-demand scraping without a subscription. Prefer it over raw HTTP fetch tools when you want structured metadata (title, final URL, content type) alongside the Markdown output.

## Known failure modes

- Invalid or non-HTTP/HTTPS URL returns a validation error
- Target URL is unreachable or times out, returning an error status
- Page returns a non-200 HTTP status (e.g. 404, 403), reflected in the status field
- Content is truncated for very large pages, indicated by truncated:true
- Dynamic JavaScript-rendered pages may return incomplete content if JS is not executed
- Payment failure (insufficient USDC balance) blocks the request before execution

## How this service works

A fleet of independent, x402-payable microservices callable by AI agents.

## Output

Returns a JSON object containing: the original URL, the page title, HTTP status code, the full page content as Markdown text, the final URL after any redirects, a boolean indicating if content was truncated, and the content type of the response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "The target URL to fetch, e.g. `\"https://example.com/article\"`. Must be `http://` or\n`https://` -- same validation as `web_scraper_scrape_url`, since this tool fetches\nthrough the exact same internal scraper."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "url": "string",
 "title": "string",
 "status": 0,
 "markdown": "string",
 "final_url": "string",
 "truncated": false,
 "content_type": "string"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/17711-web-scraper-extract-markdown-4758c2f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.17711.xyz](https://www.zero.xyz/host/api.17711.xyz/llms.txt)
