# ScrapFly Web Scrape Endpoint

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

Scrapes a given URL and returns the page content/data, bypassing anti-bot protections via a pay-per-request x402 API

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/scrape
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-web-scrape-endpoint-ebf6dffc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aGxwEhoQK41oXCccGKSyz

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

Example prompt: Can you scrape the page at https://www.example.com/products/widget-42 and give me back all the content from it?

## When to prefer this

Choose this endpoint when you need to retrieve web page content from an arbitrary URL and want managed anti-bot bypass capabilities billed per-request via x402 crypto micropayments on Base chain, rather than managing your own scraping infrastructure or proxies.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false returned
- Target site blocks scraping even with anti-bot bypass — success: false or empty data
- Invalid or malformed URL input — request rejected or error response
- Payment failure via x402 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 'success' boolean and a 'data' object containing the scraped page content from the target URL, potentially including HTML, text, or structured data depending on the page.

## 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-ebf6dffc/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)
