# GEDX402 Browser Link Extractor

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

Loads a URL in a headless browser and returns all hyperlinks (href and anchor text) found on the page

## Facts

- Endpoint: GET https://ged-x402-browser.jvalamis.workers.dev/v1/browser/links
- Price: $0.04/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-link-extractor-0e68d5c4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_joL7CDbRtxQOCXx82zgEv

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-link-extractor-0e68d5c4
```

Example prompt: Pull all the links from https://example.com — I need the href and anchor text for every hyperlink on the page.

## When to prefer this

Choose this endpoint when you need to extract all hyperlinks from a rendered (JavaScript-executed) webpage without setting up API keys, and are willing to pay $0.04 USDC per call via x402 micropayments on Base, Polygon, Arbitrum, World, or Solana. Ideal for one-off link discovery tasks in agent workflows where authentication overhead is undesirable.

## Known failure modes

- URL is unreachable or returns a non-200 status — no links returned or error response
- Payment not fulfilled via x402 — 402 Payment Required response blocks the request
- Invalid or malformed URL input — endpoint may return an empty array or error
- Page has no links — returns an empty array
- JavaScript-heavy page fails to load before extraction — links may be incomplete if gotoOptions not configured properly

## How this service works

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

## Output

A JSON array of link objects, each containing an 'href' (the full URL) and 'text' (the visible anchor text) for every hyperlink found on the rendered page.

## 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": [
  {
   "href": "https://example.com",
   "text": "Example"
  }
 ]
}
```

## More

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