# ScrapFly Crawl Archive

> ScrapFly Crawl Archive 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).

Fetches and archives a web page's content via ScrapFly's crawl infrastructure, returning the archived data for a given URL.

## Facts

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

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-archive-0916623e -d '<json body>'
```

Example prompt: Can you crawl and archive the content of https://example.com/article/2024-report for me using ScrapFly, so I have a stored snapshot of it?

## When to prefer this

Use this endpoint when you need to crawl and archive a specific URL for storage or later retrieval, particularly when you want a persistent snapshot of a page's content rather than just a live fetch. Prefer this over a simple scrape endpoint when archival/storage semantics are needed.

## Known failure modes

- Invalid or unreachable URL returns success: false
- Payment failure on Base chain blocks request
- URL blocked by anti-bot measures may return incomplete or empty data
- Malformed URL input causes validation error
- Timeout if target site is slow to respond

## 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 archived crawl result for the submitted URL, including page content and metadata captured during the crawl.

## 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-archive-0916623e/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)
