# Orbonomy Domain Crawl

> Orbonomy Domain Crawl 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-14).

Fetches structured data about a given domain via web scraping, payable per-request in USDC with no subscription required.

## Facts

- Endpoint: POST https://crawl.orbonomy.xyz/api/domain
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-domain-crawl-bc5945f7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uPtPuOuBebwaEejqRLvwB

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-domain-crawl-bc5945f7 -d '<json body>'
```

Example prompt: Can you scrape and pull structured data for the domain example.com using the pay-per-request crawl service?

## When to prefer this

Use this endpoint when you need on-demand domain data without committing to a subscription, and you want to pay micro-amounts per request in USDC. It's a good fit for agents that occasionally need to scrape or look up domain-level information without API key management.

## Known failure modes

- Invalid or malformed domain string — returns success: false
- Domain is unreachable or returns no content — empty data object
- Payment not completed via x402 — request blocked before processing
- Rate limiting or server error on the crawl backend — 5xx response

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing structured information scraped from the requested domain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "domain"
 ],
 "properties": {
  "domain": {
   "type": "string",
   "description": "Domain name"
  }
 }
}
```

## 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-domain-crawl-bc5945f7/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)
