# GEDX402 Browser Product Extractor

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

Loads a URL or HTML in a headless browser and extracts structured product data from the page

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/browser/extract/product
- Price: $0.12/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-product-extractor-6a00c5b4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_59R0C9Qpv-gTAslnSBmss

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-product-extractor-6a00c5b4
```

Example prompt: Can you extract the product name, price, and description from this URL: https://www.example.com/products/running-shoes-v2 — render the full page and pull out the key product details?

## When to prefer this

Use this endpoint when you need to extract product information from a live ecommerce or retail webpage without needing your own API key, and you are willing to pay $0.12 USDC per call via the x402 protocol on Base, Polygon, Arbitrum, World, or Solana. Ideal for one-off product lookups or agent workflows that need real-time product data without maintaining a scraping infrastructure.

## Known failure modes

- Invalid or unreachable URL returns an error or empty result
- JavaScript-heavy pages may not fully render if gotoOptions are not tuned
- Payment failure on USDC transfer results in 402 response and no data returned
- Malformed HTML input may yield incomplete extraction
- Product data not found at expected selectors returns empty or partial fields

## 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 extracted product data from the rendered page, including fields like product title, price, description, images, and other structured product attributes found on the page.

## 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-product-extractor-6a00c5b4/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)
