# GEDX402 Browser Content Fetcher

> GEDX402 Browser Content Fetcher is a paid API for AI agents from ged-x402-browser.jvalamis.workers.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Fetches and returns the rendered HTML content of a given URL using a headless browser, payable in USDC via x402 with no API key required

## Facts

- Endpoint: GET https://ged-x402-browser.jvalamis.workers.dev/v1/browser/content
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-browser-content-fetcher-01cde4f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8h0jaypSi6zrH0WGyG98H

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-content-fetcher-01cde4f9
```

Example prompt: Load the page at https://example.com/product-listings using a full browser render and give me the complete HTML — wait until the network is idle so all dynamic content is loaded.

## When to prefer this

Use this endpoint when you need the fully rendered, JavaScript-executed HTML of a webpage — especially for SPAs or dynamic pages — and you want to pay per-call in USDC on Base, Polygon, Arbitrum, World, or Solana without managing API keys. Prefer this over static HTTP fetchers when client-side rendering matters.

## Known failure modes

- Invalid or unreachable URL returns an error or empty response
- Page load timeout if the site is slow or gotoOptions are misconfigured
- Non-HTTPS URLs may be rejected per schema requirement
- Payment failure if USDC balance is insufficient or unsupported network is used
- JavaScript-heavy pages may return incomplete HTML if waitUntil option is not set appropriately

## How this service works

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

## Output

Returns a JSON object containing the fully rendered HTML of the requested page (after JavaScript execution), as produced by a headless browser. The HTML reflects the live DOM state after page load.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "html": {
   "type": "string"
  },
  "prompt": {
   "type": "string"
  },
  "elements": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "selector": {
   "type": "string"
  },
  "viewport": {
   "type": "object",
   "additionalProperties": true
  },
  "pdfOptions": {
   "type": "object",
   "additionalProperties": true
  },
  "gotoOptions": {
   "type": "object",
   "additionalProperties": true
  },
  "response_format": {
   "type": "object",
   "additionalProperties": true
  },
  "screenshotOptions": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## 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-content-fetcher-01cde4f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ged-x402-browser.jvalamis.workers.dev](https://www.zero.xyz/host/ged-x402-browser.jvalamis.workers.dev/llms.txt)
