# GEDX402 Firecrawl Batch Scrape

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

Batch-scrapes multiple URLs in parallel via Firecrawl v2, paid per-call with USDC over x402 with no API keys required.

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/firecrawl/batch/scrape
- Price: $2/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-batch-scrape-eb54e45a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iWHxWrqCZi4MRFBoDjcw-

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-batch-scrape-eb54e45a
```

Example prompt: I need to scrape all of these URLs at once and get their text content — can you batch scrape https://example.com/page1, https://example.com/page2, and https://example.com/page3 using Firecrawl and return the results?

## When to prefer this

Choose this endpoint when you need to scrape multiple URLs simultaneously rather than one at a time, and you want to avoid managing API keys by paying per-call in USDC. Ideal for bulk data collection pipelines, content aggregation across many pages, or when you need Firecrawl's structured extraction across a list of URLs in a single request.

## Known failure modes

- Payment failure — insufficient USDC balance causes 402 rejection
- Invalid URL list — malformed or inaccessible URLs return per-URL errors
- Timeout — slow or unresponsive target sites may cause partial batch results
- Rate limiting on target sites — anti-bot measures block scraping of some URLs
- Schema mismatch — incorrect input format returns 400 bad request

## 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 scraped content for each URL in the batch, structured per the Firecrawl v2 response format including extracted text, metadata, and status for each page.

## 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-batch-scrape-eb54e45a/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)
