# GEDX402 Firecrawl Parse

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

Parses web content using Firecrawl v2 over the x402 payment protocol, returning structured parsed output from a given input.

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/firecrawl/parse
- Price: $0.082/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-parse-56a0be1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9ojQRoQo6uhDtnQ_wnL50

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-parse-56a0be1b
```

Example prompt: Use Firecrawl to parse the content from this webpage and give me the clean extracted text, keeping the response under 2000 tokens: https://example.com/article.

## When to prefer this

Choose this endpoint when you need Firecrawl's parse capability specifically via the x402 micropayment protocol, and want to process messages-style input with token control. Prefer this over generic scraping endpoints when the goal is structured parsing with a known token budget.

## Known failure modes

- Payment not provided or insufficient USDC — returns HTTP 402
- Missing or malformed messages array — returns validation error
- max_tokens exceeds model limit — may be truncated or rejected
- Upstream Firecrawl service unavailable — returns 502 or timeout
- Target content inaccessible or blocked — returns empty or error response

## 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 containing a 'model' field (set to 'firecrawl') and a 'response' field with the parsed content or structured output derived from the submitted messages input, capped at the specified max_tokens.

## 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-parse-56a0be1b/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)
