# Firecrawl Search via StableEnrich

> Firecrawl Search via StableEnrich is a paid API for AI agents from stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app, paid per call via x402, $0.0252/call, status unknown (last checked 2026-09-13).

Performs web search and returns scraped page snippets for up to 10 results per query

## Facts

- Endpoint: POST https://stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app/api/firecrawl/search
- Price: $0.0252/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/firecrawl-search-via-stableenrich-087319f3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W_VRx4CcRAEPLUqnvZqvH

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 firecrawl-search-via-stableenrich-087319f3 -d '<json body>'
```

Example prompt: Search the web for the latest news on OpenAI's new model releases and give me scraped content from the top 5 results.

## When to prefer this

Choose this endpoint when you need both search results AND actual page content in a single call — ideal when you need to read or summarize what's on the found pages, not just their titles. Prefer this over a plain search API when downstream tasks require text extraction from the result pages. Use Exa Search (also available on this host) if you need semantic/vector-based search with domain filtering instead of keyword-style queries.

## Known failure modes

- Query returns no results for very niche or obscure topics
- Scraped content is empty if the target page blocks crawlers
- Result count capped at 10 even if more results exist
- Rate limiting or payment failure if USDC balance is insufficient
- Some pages may return partial content if they are JavaScript-heavy SPAs

## How this service works

Firecrawl Search — web search with scraped snippets. limit max is 10.

## Output

A list of up to 10 web search results, each including the URL and scraped page snippet/content extracted directly from the live webpage, not just a title or meta description.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "query",
      "limit"
     ],
     "properties": {
      "limit": {
       "type": "number",
       "default": 5,
       "maximum": 10,
       "minimum": 1,
       "description": "Maximum number of results (max 10)"
      },
      "query": {
       "type": "string",
       "minLength": 1,
       "description": "Search query to find relevant web pages"
      }
     },
     "additionalProperties": false
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/firecrawl-search-via-stableenrich-087319f3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app](https://www.zero.xyz/host/stable-enrich-git-shafu-stableenrich-valid-89fbcd-merit-systems.vercel.app/llms.txt)
