# Orbonomy Crawl - Web Page Reader

> Orbonomy Crawl - Web Page Reader is a paid API for AI agents from crawl.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches and extracts readable content from any given URL, returning structured data suitable for AI agent consumption, paid per-request via USDC x402.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/read
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-crawl-web-page-reader-72d7e256
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e7LvZd2hY4HtwzOnNii1-

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 orbonomy-crawl-web-page-reader-72d7e256 -d '<json body>'
```

Example prompt: Can you read the content of https://example.com/article and pull back whatever text and data is on that page?

## When to prefer this

Choose this endpoint when an AI agent needs frictionless, pay-per-request web content access without API keys or subscriptions. Ideal for one-off or low-volume web reads where setting up a scraping infrastructure is overkill, or when the agent needs to autonomously pay for access using USDC via x402.

## Known failure modes

- URL is invalid or malformed — likely returns success: false
- Target page is behind authentication or a paywall — content may be inaccessible or partial
- Page returns non-200 HTTP status — may result in failure response
- USDC payment via x402 fails or is insufficient — request is rejected before processing
- Rate limiting or blocking by target website — scrape may return empty or error data

## How this service works

Web scraping and search for AI agents. No auth, no subscriptions. Pay per request in USDC via x402.

## Output

Returns a JSON object with a 'success' boolean and a 'data' object containing the scraped content extracted from the requested URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "URL to read"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-crawl-web-page-reader-72d7e256/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from crawl.orbonomy.xyz](https://www.zero.xyz/host/crawl.orbonomy.xyz/llms.txt)
