# x402.orth.sh Web HTML Scraper

> x402.orth.sh Web HTML Scraper is a paid API for AI agents from x402.orth.sh, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Fetches the raw HTML content of any given URL via a paid GET request costing $0.03 USDC per call.

## Facts

- Endpoint: GET https://x402.orth.sh/context-dev/web/scrape/html
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-orth-sh-web-html-scraper-8601af65
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c5UFe2i9Fq_sBnkINgV_P

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 x402-orth-sh-web-html-scraper-8601af65
```

Example prompt: Can you scrape the raw HTML from https://example.com/products/shoes and return the full page source?

## When to prefer this

Use this endpoint when you need the full raw HTML of a webpage and plan to parse or process it yourself. Prefer this over LLM-driven extraction when you want unprocessed source markup, or over a search API when you already have the exact URL. Best for cases where structured extraction is not needed or will be handled downstream.

## Known failure modes

- URL is missing the http:// or https:// protocol prefix — returns validation error
- Target page is behind authentication or a paywall — returns incomplete or redirect HTML
- Target site blocks scrapers or returns a CAPTCHA — returns challenge page HTML instead of content
- URL is unreachable or the domain does not exist — returns connection error
- Page takes too long to load — possible timeout

## How this service works

Scrapes the given URL and returns the raw HTML content of the page.

## Output

Returns the raw HTML content of the specified webpage as a string, including all tags, scripts, styles, and embedded content present in the page at the time of the request.

## 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",
     "properties": {
      "url": {
       "type": "string",
       "description": "Full URL to scrape (must include http:// or https:// protocol)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-orth-sh-web-html-scraper-8601af65/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orth.sh](https://www.zero.xyz/host/x402.orth.sh/llms.txt)
