# Agent Data API – Web Page Extraction

> Agent Data API – Web Page Extraction is a paid API for AI agents from agent-data-api-ui1c.onrender.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Fetches a web page by URL and returns its text content, Markdown rendering, and metadata (with optional page links) for $0.01 USDC per call via x402 payment protocol.

## Facts

- Endpoint: GET https://agent-data-api-ui1c.onrender.com/extract
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-data-api-web-page-extraction-559bf27a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2N5Cx4wWoyGGarr9T44WT

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 agent-data-api-web-page-extraction-559bf27a
```

Example prompt: Can you pull the full text and links from this page — https://example.com/article — and give it to me as Markdown?

## When to prefer this

Choose this endpoint when your agent needs to read the content of an arbitrary public web page in text or Markdown form without maintaining a browser session. It is well-suited for one-off article or documentation extractions where cost efficiency ($0.01/call) matters and USDC micropayments via x402 are acceptable. Prefer alternatives if you need full JavaScript rendering, authenticated sessions, or bulk crawling of entire sites.

## Known failure modes

- URL is unreachable or returns a non-200 status — extraction fails with an error
- Payment not provided or rejected by x402 protocol — returns 402 Payment Required
- URL points to a resource requiring authentication — content may be incomplete or blocked
- Dynamic JavaScript-heavy pages may return incomplete content if JS rendering is not supported
- Malformed or missing URL parameter — returns a validation error

## How this service works

Pay-per-call data services for AI agents: web extraction (text, Markdown, metadata), PDF-to-text, RSS/Atom parsing, FX and crypto prices, weather, DNS and email validation. All paid endpoints use the x402 payment protocol (USDC).

## Output

Returns the extracted page content as plain text and/or Markdown, along with metadata (title, description, etc.) and optionally a list of hyperlinks found on the page.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL of the page to extract"
  },
  "links": {
   "type": "string",
   "description": "Set to 'true' to include page links"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-data-api-web-page-extraction-559bf27a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-data-api-ui1c.onrender.com](https://www.zero.xyz/host/agent-data-api-ui1c.onrender.com/llms.txt)
