# Sovereign X402 Web Scraper (Firecrawl-backed)

> Sovereign X402 Web Scraper (Firecrawl-backed) is a paid API for AI agents from sovereign-x402-zeta.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scrapes a given URL and returns its content as clean Markdown, powered by Firecrawl under the hood, accessible via x402 micropayment at $0.01 USDC per call.

## Facts

- Endpoint: POST https://sovereign-x402-zeta.vercel.app/api/v1/web/scrape
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sovereign-x402-web-scraper-firecrawl-backed-c1cc739b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8nWgygpH-MGJR-_wUvq_X

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 sovereign-x402-web-scraper-firecrawl-backed-c1cc739b -d '<json body>'
```

Example prompt: Can you scrape https://en.wikipedia.org/wiki/Artificial_intelligence and give me the content as clean Markdown?

## When to prefer this

Choose this endpoint when you need to fetch and clean a single URL's content into Markdown quickly, especially in an x402 micropayment workflow where you want per-call billing without a Firecrawl subscription. It's well-suited for agentic pipelines that need lightweight, on-demand web content extraction without managing API keys for Firecrawl directly.

## Known failure modes

- URL is unreachable or returns a non-200 HTTP status — scrape fails with an error
- Page requires JavaScript rendering beyond what Firecrawl supports — incomplete or empty content returned
- Paywalled or login-gated pages return only the paywall/login prompt content
- Malformed or missing URL in the request body causes a validation error
- Rate limits on the underlying Firecrawl service may cause intermittent failures

## How this service works

Scrape a URL and return clean Markdown (via Firecrawl). Priced above Firecrawl's own per-scrape cost.

## Output

Returns the scraped web page's content as clean, human-readable Markdown, stripping away HTML boilerplate, navigation, and ads to leave just the meaningful textual content of the page.

## 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",
     "properties": {},
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sovereign-x402-web-scraper-firecrawl-backed-c1cc739b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sovereign-x402-zeta.vercel.app](https://www.zero.xyz/host/sovereign-x402-zeta.vercel.app/llms.txt)
