# ScravFly Web Page Reader — Crawl & Read URL Content

> ScravFly Web Page Reader — Crawl & Read URL Content is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-15).

Fetches and returns the readable content of a given URL for use in AI pipelines and data extraction workflows

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/read
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scravfly-web-page-reader-crawl-read-url-content-a181ef68
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qyQzlyYGG8VMPLSILMdsq

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 scravfly-web-page-reader-crawl-read-url-content-a181ef68 -d '<json body>'
```

Example prompt: Can you read and return 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 you need to programmatically fetch and read the content of a specific URL as part of an AI agent pipeline, especially when payment via x402 on Base chain is acceptable. Prefer this over browser-based scraping when you want a simple POST-based interface with structured JSON output and pay-per-request pricing.

## Known failure modes

- URL is unreachable or returns a 4xx/5xx HTTP error — success: false
- URL is malformed or missing — validation error before request is sent
- Target site blocks scraping (anti-bot measures) — success: false or incomplete data
- Payment failure via x402 on Base chain — request not processed
- Timeout if target server 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 fetched content from the provided URL. On success, the data field holds the scraped page content; on failure, success is false.

## 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/scravfly-web-page-reader-crawl-read-url-content-a181ef68/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
