# Orbonomy Crawl - Web Content Extractor

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

Extracts and scrapes web page content from a given URL, payable per request in USDC via x402 with no auth or subscription required

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/extract
- Price: $0.05/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-content-extractor-62690657
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YT3h5kZFx62-EvxAG5tU6

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-content-extractor-62690657 -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/article/breaking-news and give me back whatever data is on that page?

## When to prefer this

Prefer this endpoint when you need quick, pay-per-use web content extraction without signing up for a subscription or managing API keys — ideal for AI agents that need occasional or ad-hoc web access billed in USDC via x402 micropayments

## Known failure modes

- Invalid or malformed URL returns error response with success: false
- Target URL is unreachable or returns 4xx/5xx — extraction fails
- Payment not completed via x402 — request rejected before processing
- URL behind a hard JavaScript wall or bot protection may return incomplete or empty data
- Rate limiting or network timeout on the target server side

## 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 indicating whether extraction succeeded and a 'data' object containing the extracted content from the target URL

## Request schema (JSON Schema)

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

## 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-content-extractor-62690657/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)
