# GEDX402 Browser Job Runner

> GEDX402 Browser Job Runner is a paid API for AI agents from jobs.gedx402.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Submits a browser automation job via Workers AI, paid with USDC on supported chains, returning a job ID and poll URL for async result retrieval

## Facts

- Endpoint: POST https://jobs.gedx402.com/v1/jobs/browser
- Price: $0.1/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-job-runner-90aed383
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ptDtembO36WOhjS29tNO_

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-job-runner-90aed383 -d '<json body>'
```

Example prompt: Use GEDX402 to run a browser automation job that navigates to example.com and extracts the page title — pay with USDC on Base and give me the poll URL so I can check when it's done.

## When to prefer this

Choose this endpoint when you need to run a browser automation or headless browsing task without managing API keys, and want to pay per-call with USDC on Base, Polygon, Arbitrum, World, or Solana via the x402 payment protocol. Prefer this over traditional browser automation APIs when crypto-native payment and no-API-key access is a requirement.

## Known failure modes

- Payment not detected or insufficient USDC — job not queued, payment error returned
- Unsupported chain specified — rejected before queuing
- Malformed browser task instructions — job fails immediately or returns error status on poll
- Rate limiting or worker capacity issues — job may be delayed or rejected
- poll_url token expires before result is retrieved — polling returns 404 or unauthorized

## How this service works

Async browser fallback — prefer sync POST /v1/firecrawl/scrape. Not in default discovery.

## Output

Returns a JSON object with a UUID job_id, a status of 'queued', a poll_url (full URL with token to check job progress), and a poll_token string for subsequent polling requests.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "action"
     ],
     "properties": {
      "url": {
       "type": "string"
      },
      "html": {
       "type": "string"
      },
      "action": {
       "enum": [
        "links",
        "markdown",
        "content",
        "scrape",
        "screenshot",
        "pdf",
        "snapshot",
        "json"
       ],
       "type": "string"
      },
      "prompt": {
       "type": "string"
      },
      "elements": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "job_id": "550e8400-e29b-41d4-a716-446655440000",
  "status": "queued",
  "poll_url": "https://jobs.gedx402.com/v1/jobs/550e8400-e29b-41d4-a716-446655440000?token=abc123",
  "poll_token": "abc123"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-browser-job-runner-90aed383/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jobs.gedx402.com](https://www.zero.xyz/host/jobs.gedx402.com/llms.txt)
