# ScrapFly Domain Crawl API

> ScrapFly Domain Crawl API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Crawls and extracts data from an entire domain, returning structured content from the target website.

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/domain
- Price: $0.06/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-api-753b3648
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cwy3vVnWQtv0Kz7HMhNOG

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-api-753b3648 -d '<json body>'
```

Example prompt: Crawl the domain example.com and extract all the content you can find from its pages so I can analyze what they publish.

## When to prefer this

Choose this endpoint when you need to extract content from an entire domain rather than a single URL, and when you need a pay-per-request model with no subscription via x402 on Base chain. Prefer this over single-page scrapers when broad domain coverage is required.

## Known failure modes

- Domain does not exist or is unreachable — success: false with no data
- Domain blocks crawlers via robots.txt or bot protection — partial or empty data returned
- Invalid domain format in input — request rejected
- Payment failure on Base chain via x402 — request not processed
- Timeout on large domains — incomplete data returned

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing the scraped content extracted from the crawled domain, including page text, metadata, and structured content fields depending on what the domain contains.

## 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-api-753b3648/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
