# ScrapFly Web Scrape Endpoint

> ScrapFly Web Scrape Endpoint is a paid API for AI agents from scrapifrivly.orbonomy.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14, last successful call 2026-07-06).

Scrapes a single URL and returns the page content and data via a POST request, paid per-call on Base chain.

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/scrape
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-07-06
- Success rate: 100% of calls made through Zero
- Activations on Zero: 9
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-web-scrape-endpoint-40ed41d2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RKmsSKEEVh4sj0y2gppMV

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-40ed41d2 -d '<json body>'
```

Example prompt: Can you scrape the content from https://example.com/products and return whatever data is on that page?

## When to prefer this

Use this endpoint when you need to fetch or scrape a single URL's content programmatically and are willing to pay per-request via USDC on Base chain. Best suited for one-off page fetches where you have a specific URL ready.

## Known failure modes

- Invalid or unreachable URL returns success: false
- Payment failure on Base chain results in 402 error
- Anti-bot protections on target site may block scrape
- Malformed URL input causes request rejection
- Target page returns non-200 status, may result in empty data

## 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 page content and any extracted information from the target 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-web-scrape-endpoint-40ed41d2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
