# web-scraper.api.klymax402.com Single URL Scraper

> web-scraper.api.klymax402.com Single URL Scraper is a paid API for AI agents from web-scraper.api.klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-13).

Fetches a single URL and converts its web content into clean, readable markdown

## Facts

- Endpoint: GET https://web-scraper.api.klymax402.com/api/scrape
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/web-scraper-api-klymax402-com-single-url-scraper-334e70a0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NAr1G_KxJkOpjQZbtdFoA

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 web-scraper-api-klymax402-com-single-url-scraper-334e70a0
```

Example prompt: Can you scrape https://example.com/article and give me the content as clean markdown so I can read it without all the HTML noise?

## When to prefer this

Use this endpoint when you need to fetch and read the content of a single, specific URL and want clean markdown output rather than raw HTML. Ideal for article reading, research, summarization pipelines, or any task where a single page's readable content is needed quickly. Prefer the sibling batch endpoint if you need to scrape multiple URLs at once.

## Known failure modes

- URL is unreachable or returns a non-200 status — scrape fails with an error
- URL points to a JavaScript-heavy SPA that requires rendering — content may be incomplete or missing
- URL requires authentication or is behind a paywall — returns partial or no content
- Malformed or missing URL query parameter — returns a validation error
- Rate limits or network timeouts on the target site — request may fail or return empty content

## How this service works

Scrape a URL and convert to clean markdown

## Output

Returns the scraped web page content converted into clean, readable markdown — stripping away HTML, navigation, ads, and other clutter to leave just the meaningful text and structure.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "URL to scrape (e.g. https://example.com/article)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/web-scraper-api-klymax402-com-single-url-scraper-334e70a0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from web-scraper.api.klymax402.com](https://www.zero.xyz/host/web-scraper.api.klymax402.com/llms.txt)
