# GEDX402 Browser Outcome Extractor

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

Loads a URL in a headless browser and extracts structured content (article markdown, product data, or both) using a recipe-based approach, paid via USDC crypto microtransaction.

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/browser/outcome/extract
- Price: $0.22/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-outcome-extractor-f35a6c90
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0_zlhv0JN2itkzpU0IKQN

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-outcome-extractor-f35a6c90
```

Example prompt: Can you extract the article content from https://example.com/some-news-story as markdown, including the title, author, and published date?

## When to prefer this

Use this endpoint when you need to extract clean, structured content (article text or product data) from a specific public URL without managing API keys, preferring crypto micropayment (USDC) over subscription billing. Best for one-off or low-volume extractions where you want both markdown and metadata in one call.

## Known failure modes

- URL is not accessible or returns a non-200 status, resulting in an extraction error
- Invalid or non-HTTPS URL provided
- Recipe enum value not one of: article, product, full
- Payment insufficient or rejected on the selected chain
- Page requires JavaScript rendering beyond browser timeout
- Page blocks automated headless browsers

## How this service works

Single-hop browser outcome: one x402 payment runs markdown + article or product extract (or both for recipe full). POST { url, recipe: article|product|full, options? } on browser.gedx402.com. x402 settlement $0.22. Replaces multi-hop extract/article + extract/product for agents. Discover: GET /v1/models?bundle=browser.

## Output

Returns a JSON object containing the recipe type used, the article body as markdown text, and metadata fields such as title, author, and published date — or structured product commerce JSON depending on the recipe chosen.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "recipe": {
   "enum": [
    "article",
    "product",
    "full"
   ],
   "type": "string"
  },
  "options": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-browser-outcome-extractor-f35a6c90/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)
