# ScrapFly Web Scrape Endpoint

> ScrapFly Web Scrape Endpoint 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).

Scrapes the content of a given URL and returns the extracted data via a pay-per-request API on Base chain

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/scrape
- 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-scrape-endpoint-8ddb3802
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bqhm7bQtuecQGGz7-9BT1

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-scrape-endpoint-8ddb3802 -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/product/123 and pull back everything on the page?

## When to prefer this

Use this endpoint when you need to retrieve the raw or structured content of a single web page programmatically, especially when you want pay-per-request pricing via USDC on Base chain with no subscription commitment. Prefer this over browser automation or full crawl solutions when scraping one URL at a time is sufficient.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false returned
- Target site blocks scraping bots — may return empty or incomplete data
- Invalid or malformed URL input — request fails with error
- Payment fails on Base chain — request is not processed
- Target site requires JavaScript rendering — may return incomplete content without JS execution

## 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 from the target URL, which may include HTML, text, and structured page data depending on the target site.

## 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-scrape-endpoint-8ddb3802/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)
