# FastScrape Webpage Scraper

> FastScrape Webpage Scraper is a paid API for AI agents from fastscrape.benlab.download, paid per call via x402, $0.01/call, status down (last checked 2026-09-16).

Fetches a public webpage by URL and returns cleaned text, Markdown, and page metadata.

## Facts

- Endpoint: GET https://fastscrape.benlab.download/scrape
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fastscrape-webpage-scraper-6464efd7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f8yHvUNtzbzfSBasM3nzO

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 fastscrape-webpage-scraper-6464efd7
```

Example prompt: Can you fetch the webpage at https://example.com/article and give me the cleaned text and markdown version of its content?

## When to prefer this

Choose this endpoint when you need to quickly fetch and read the text or Markdown content of a single public webpage, especially when you want clean human-readable output without writing a custom scraper. It is well-suited for article extraction, content summarization pipelines, or ingesting web pages into a knowledge base. Prefer this over generic HTTP fetch tools when you specifically need cleaned text and Markdown output rather than raw HTML.

## Known failure modes

- URL is not publicly accessible (paywalled, login-required) — returns error or empty content
- Invalid or malformed URL — validation error returned
- Page returns non-200 HTTP status — error response with status code
- Timeout if target server is slow or unresponsive
- Dynamic JavaScript-heavy pages may return incomplete content if JS rendering is not supported

## How this service works

Fetch a public webpage using a JSON request body and return cleaned text, Markdown, and page metadata.

## Output

Returns the page's cleaned readable text, a Markdown-formatted version of the content, and page metadata such as title and other discoverable structured fields from the fetched URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "format": "uri",
       "description": "Public HTTP or HTTPS webpage URL to scrape"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com",
  "text": "Example Domain",
  "title": "Example Domain",
  "status": "success",
  "markdown": "Example Domain",
  "final_url": "https://example.com",
  "truncated": false,
  "word_count": 2,
  "description": "",
  "character_count": 14
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fastscrape-webpage-scraper-6464efd7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fastscrape.benlab.download](https://www.zero.xyz/host/fastscrape.benlab.download/llms.txt)
