# GEDX402 Browser Content Fetcher

> GEDX402 Browser Content Fetcher 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 the full HTML content of a given URL using a headless browser, with no API key required — pay per call with USDC.

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/browser/content
- 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-content-fetcher-ae416c07
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XB_sy_15NXVusv5TcxY-7

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-ae416c07
```

Example prompt: Can you load https://example.com in a headless browser and give me the full rendered HTML of the page?

## When to prefer this

Use this endpoint when you need to fetch the fully rendered HTML of a JavaScript-heavy page where a simple HTTP GET would miss dynamic content. It is ideal when you have no API key budget or want pay-per-use billing via USDC on Base, Polygon, Arbitrum, World, or Solana. Prefer this over traditional scraping APIs when you need browser-level rendering without provisioning infrastructure.

## Known failure modes

- Invalid or unreachable URL returns an error response
- Payment failure if USDC balance is insufficient or unsupported network is used
- Timeout if the target page takes too long to load
- Malformed URL schema (non-HTTPS) may be rejected
- Page returns non-200 status code, which may be reflected in the response

## 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 rendered HTML of the requested page as seen by a real browser, including any dynamically injected content from JavaScript execution.

## 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-content-fetcher-ae416c07/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)
