# ScrapFly Crawl Read — Web Page Content Fetcher

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

Fetches and reads the content of a given URL, returning parsed web page data suitable for AI agents.

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/crawl/read
- Price: $0.09/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-afb3f30e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p-_bqtw6FzeXsKFIGYdk-

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

Example prompt: Fetch and read the full content of this webpage for me: https://example.com/article — I need whatever text and data is on that page.

## When to prefer this

Use this endpoint when an AI agent needs to fetch and read the content of a specific known URL, especially when payment per request via x402/USDC on Base chain is acceptable and the target is a single page rather than a full site crawl.

## Known failure modes

- URL is unreachable or returns a non-200 status — success: false
- URL is malformed or missing — validation error
- Target site blocks scraping — empty or partial data returned
- Payment insufficient or x402 transaction fails — request rejected
- Timeout on slow-loading pages — partial or no content returned

## 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 parsed content of the requested web 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-crawl-read-web-page-content-fetcher-afb3f30e/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)
