# ScrapFly Web Archive Crawler

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

Fetches and returns archived or cached content of a given URL via web crawling

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/archive
- 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-web-archive-crawler-25a706cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JA5qE79P0PqCY_xsAGZ7v

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-web-archive-crawler-25a706cf -d '<json body>'
```

Example prompt: Can you fetch the archived content of https://example.com/some-article so I can see what the page looked like when it was last crawled?

## When to prefer this

Use this endpoint when you need to retrieve archived, cached, or previously crawled content of a specific URL, especially when the live page may have changed, been removed, or is temporarily unavailable. Prefer this over live scraping when you want a historical snapshot or a stored copy of a page.

## Known failure modes

- URL is unreachable or does not exist — success: false with no data
- Invalid or malformed URL input — request rejected
- URL blocked by robots.txt or anti-scraping protections — may return empty or partial data
- Archive not available for the requested URL — data may be null
- Payment failure on Base chain — request not processed

## 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 archived/crawled content of the submitted URL, including page text, metadata, or structured content depending on what was captured.

## 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-web-archive-crawler-25a706cf/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)
