# ScrapFly Crawl Read — Web Page Content Fetcher

> ScrapFly Crawl Read — Web Page Content Fetcher is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches and extracts readable content from a given URL via a managed web crawl proxy

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/read
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-read-web-page-content-fetcher-09d3258b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2xHD_Xfv21IjlGfeVDHmd

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-crawl-read-web-page-content-fetcher-09d3258b -d '<json body>'
```

Example prompt: Can you fetch and read the content from this webpage for me: https://example.com/article/some-news-story?

## When to prefer this

Use this endpoint when you need to programmatically read or extract content from a specific web page URL, especially when direct HTTP access is blocked or unreliable. It is well-suited for reading articles, blog posts, or public web pages where you need the raw or readable content. Prefer this over browser automation or DIY scraping when you want a managed, pay-per-use crawl with anti-bot bypass capabilities.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false with no data
- Invalid or malformed URL input — validation error or failed request
- Target site blocks scraping — may return empty or partial data
- Payment failure on Base chain — request not processed
- Rate limit exceeded — request rejected
- Timeout if the target page is slow to respond

## 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 extracted content from the requested URL, such as page text, HTML, 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-crawl-read-web-page-content-fetcher-09d3258b/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)
