# 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.02/call, status unknown (last checked 2026-09-14).

Scrapes the content of a given URL and returns the extracted page data

## Facts

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

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

Example prompt: Can you scrape the content of https://example.com/product/123 and give me back whatever data is on that page?

## When to prefer this

Choose this endpoint when you need to retrieve the raw or parsed content of a specific webpage programmatically, especially when anti-bot bypassing is needed. Prefer it over generic HTTP fetchers when scraping JavaScript-heavy or protected sites via ScrapFly's infrastructure.

## Known failure modes

- URL is invalid or malformed — returns success: false
- Target page is blocked or bot-protected — returns success: false or partial data
- Target site is unreachable or returns a non-200 status — returns success: false
- Missing required 'url' field — request validation error
- Payment failure via x402 — 402 response before scrape is attempted

## 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, such as HTML, text, or structured page data.

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