# GEDX402 Browser HTML Renderer

> GEDX402 Browser HTML Renderer is a paid API for AI agents from browser.gedx402.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Fetches and renders a URL or raw HTML in a headless browser, returning the full rendered HTML content

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/browser/html
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-browser-html-renderer-da65558e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tLoVva1Emr8kZEUiPG_It

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 gedx402-browser-html-renderer-da65558e
```

Example prompt: Load https://news.ycombinator.com in a headless browser and give me the full rendered HTML of the page, waiting until the network is idle.

## When to prefer this

Use this endpoint when you need the JavaScript-rendered HTML of a page (not just the static source), especially for single-page apps or dynamically loaded content, and you want to pay per-call with USDC crypto on Base, Polygon, Arbitrum, World, or Solana without managing API keys.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Missing both url and html parameters causes a bad request
- Payment failure or insufficient USDC balance blocks the request
- Timeout if the page takes too long to load
- Non-HTTPS URLs may be rejected

## How this service works

x402 workers ai. pay with usdc on base, polygon, arbitrum, world, or solana. no api keys.

## Output

A JSON object containing a 'html' key with the fully rendered HTML string of the requested page after JavaScript execution and all dynamic content has loaded.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "description": "HTTPS URL to load (required unless html is set)."
  },
  "html": {
   "type": "string",
   "description": "Raw HTML to render instead of fetching a URL."
  },
  "prompt": {
   "type": "string",
   "description": "Natural-language extraction prompt (for /json)."
  },
  "elements": {
   "type": "array",
   "items": {
    "type": "object"
   },
   "description": "Scrape selectors (for /scrape)."
  },
  "selector": {
   "type": "string",
   "description": "CSS selector for element capture or scrape."
  },
  "viewport": {
   "type": "object",
   "description": "Browser viewport width/height/deviceScaleFactor."
  },
  "pdfOptions": {
   "type": "object",
   "description": "PDF print options."
  },
  "gotoOptions": {
   "type": "object",
   "description": "Puppeteer goto options (e.g. waitUntil: networkidle0)."
  },
  "response_format": {
   "type": "object",
   "description": "JSON schema for structured /json extraction."
  },
  "screenshotOptions": {
   "type": "object",
   "description": "fullPage, type, omitBackground, etc."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "html": "<html>...</html>"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-browser-html-renderer-da65558e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from browser.gedx402.com](https://www.zero.xyz/host/browser.gedx402.com/llms.txt)
