# Orbonomy Crawl - Web Scraping API

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

Scrapes the content of a given URL and returns structured data, with per-request payment in USDC via x402 and no authentication required.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/scrape
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-crawl-web-scraping-api-453287bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NJLJXx7WPok5sIzay58Gu

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-scraping-api-453287bd -d '<json body>'
```

Example prompt: Can you scrape the content of https://example.com/article and pull back whatever data is on that page? I want the full page contents without needing to sign up for anything.

## When to prefer this

Choose this endpoint when an AI agent needs to fetch and extract content from an arbitrary URL without setting up API keys or subscriptions, and is capable of handling x402 micropayment flows in USDC. It is well-suited for one-off or low-volume scraping tasks where pay-per-use pricing is preferable to a recurring subscription.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false with no data
- Invalid or malformed URL in the request body — likely a 400 error
- Payment not completed via x402 — request rejected before scraping
- Target page is JavaScript-rendered and content may not be fully captured
- Rate limiting or blocking by the target website resulting in incomplete 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 from the target URL.

## Request schema (JSON Schema)

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

## 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-scraping-api-453287bd/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)
