# klymax402 Web Scraper

> klymax402 Web Scraper is a paid API for AI agents from klymax402.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-15).

Fetches and converts a given URL's web page content into clean markdown text with metadata

## Facts

- Endpoint: GET https://klymax402.com/api/web-scraper/api/scrape
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-web-scraper-bd25428f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gm6iffWxIvWC-kJq2-ds7

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 klymax402-web-scraper-bd25428f
```

Example prompt: Can you scrape https://techcrunch.com/2024/01/15/openai-announces-new-model/ and give me the main article text in markdown format?

## When to prefer this

Choose this endpoint when you need to quickly fetch and read the text content of a public web page as markdown — especially for article extraction, documentation reading, or lightweight web research. It's a pay-per-call API requiring no API key setup, making it ideal for agents that need occasional web access without managing credentials. Prefer it over full browser automation when JavaScript rendering is not critical.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — scrape may fail or return empty content
- JavaScript-heavy single-page applications may not render correctly via GET-based scraping
- Paywalled or authentication-required pages will return gated content rather than full articles
- Rate limiting or bot-blocking by the target site may return a CAPTCHA page instead of content
- Malformed or missing URL query parameter results in an error response

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the scraped page's URL, title, extracted markdown body text, metadata object, word count, and character count — giving the agent clean, structured access to the page's readable content.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "example",
  "meta": {},
  "title": "example",
  "markdown": "example",
  "word_count": 1,
  "character_count": 1
 }
}
```

## More

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