# GEDX402 Firecrawl Scrape

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

Scrapes a single URL using Firecrawl v2 via x402 micropayment, returning structured page content

## Facts

- Endpoint: GET https://browser.gedx402.com/v1/firecrawl/scrape
- Price: $0.042/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-firecrawl-scrape-709206bd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KVZAKUGCGu8n5HwTMgphf

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-scrape-709206bd
```

Example prompt: Scrape the content of https://example.com/blog/article for me using Firecrawl and return the full page text, with a max of 2000 tokens.

## When to prefer this

Choose this endpoint when you need to scrape a single URL and get its content via Firecrawl v2, especially when paying per-call via x402 micropayments (USDC). Prefer this over generic HTTP fetchers when you need Firecrawl's anti-bot bypassing, structured output, and markdown/text extraction capabilities.

## Known failure modes

- Target URL is unreachable or returns a non-200 status — scrape fails with an error
- Payment not provided or invalid x402 header — 402 Payment Required response
- URL is blocked by robots.txt or anti-bot measures — returns empty or partial content
- max_tokens exceeded — response is truncated
- Invalid input schema — returns 400 bad request

## How this service works

Firecrawl v2 API proxy — scrape. JSON body matches https://docs.firecrawl.dev/api-reference/v2-introduction. Poll GET routes are free; POST/PUT/DELETE are x402. $0.042 USDC per request. Agent search: scrape, markdown, firecrawl, web scrape, scrape-lite.

## Output

Returns a JSON object with the scraped page content as structured text, attributed to the 'firecrawl' model, including the extracted response text from the target URL.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string"
  },
  "html": {
   "type": "string"
  },
  "viewport": {
   "type": "object",
   "additionalProperties": true
  },
  "gotoOptions": {
   "type": "object",
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "action": "outcome/scrape",
  "success": true,
  "markdown": "# Example\n\nPage content as Markdown.",
  "metadata": {
   "sourceURL": "https://example.com",
   "browser_ms": 1200,
   "statusCode": 200
  }
 }
}
```

## More

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