# GEDX402 Firecrawl Agent

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

Runs an autonomous web agent session via Firecrawl v2, accepting a message array and returning a model-generated response for agentic browsing tasks.

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/firecrawl/agent
- Price: $0.802/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-firecrawl-agent-7df47498
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6JXL2ZTuNaRI_ItMamlXM

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-firecrawl-agent-7df47498
```

Example prompt: Use the Firecrawl agent to browse the Hacker News front page, find the top 3 stories about AI, and summarize each one — allow up to 1024 tokens for the response.

## When to prefer this

Choose this endpoint when you need an autonomous multi-step web agent — not just a single-URL scrape — to navigate, interact with, and extract from websites using natural language instructions, and you want to pay per-call in USDC without API keys via the x402 protocol.

## Known failure modes

- Invalid messages array format returns a 400 error
- Exceeding max_tokens limit may truncate response
- Payment failure via x402 protocol returns 402 Payment Required
- Target website blocks crawling, returning incomplete or empty response
- Agent unable to complete task due to JavaScript-heavy or auth-gated pages

## How this service works

Firecrawl v2 on x402 — scrape, search, crawl, map, batch, extract, agent, parse, interact, monitor at /v1/firecrawl/*.

## Output

Returns a JSON object with a model field ('firecrawl') and a response field containing the agent's natural language output or extracted content from the web task.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "messages": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "max_tokens": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "firecrawl",
  "response": "Hello!"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-firecrawl-agent-7df47498/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)
