# ScrapFly Domain Crawl

> ScrapFly Domain Crawl is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Crawls all pages of a given domain and returns structured content data extracted from the entire site

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/domain
- 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/scrapfly-domain-crawl-e2aeab8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7EUbBal_2C0cFLttriFng

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

Example prompt: Can you crawl the entire domain example.com using ScrapFly and pull back all the structured content and data from its pages?

## When to prefer this

Use this endpoint when you need to extract and index content from an entire domain rather than a single URL. Ideal for competitive intelligence, site auditing, content aggregation, or building knowledge bases from a full website. Prefer over single-URL scraping when broad domain-level coverage is needed.

## Known failure modes

- Invalid or unreachable domain returns success: false
- Domain blocked by anti-bot measures may return incomplete data
- Payment failure via x402 on Base chain prevents request from being processed
- Malformed domain string causes validation error
- Large domains may time out or return partial results

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a success boolean and a data object containing structured content and page data extracted from all crawled pages of the specified domain.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-domain-crawl-e2aeab8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
