# ScrapFly Crawl Extract

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

Crawls a given URL and extracts its content and data for AI agent consumption, paid per-request via x402 on Base chain.

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/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/scrapfly-crawl-extract-64a431f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Db4VY0-DvxBi9ZPQLwkZA

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-crawl-extract-64a431f0 -d '<json body>'
```

Example prompt: Can you scrape this page and extract all the content from it: https://example.com/products/widget-pro?

## When to prefer this

Use this endpoint when you need to programmatically extract content from a specific URL and want a pay-per-request model via x402 on Base chain, without managing scraping infrastructure. Prefer this over browser-based scraping when you need a managed, cloud-hosted extraction service.

## Known failure modes

- URL is unreachable or returns 4xx/5xx — success: false
- Invalid or malformed URL input — validation error
- Target site blocks scraping — may return empty or partial data
- Payment failure on Base chain — request not processed
- Timeout if target page loads too slowly

## 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 boolean 'success' field and a 'data' object containing the extracted content and structured data from the crawled URL.

## Request schema (JSON Schema)

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

## 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-crawl-extract-64a431f0/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)
