# ScrapFly Crawl Search

> ScrapFly Crawl Search is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Performs a web search crawl query and returns structured search results via the ScrapFly scraping infrastructure

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/crawl/search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-crawl-search-4e47439c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__n0bXxLM3JGOV-xpxiPJr

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 scrapfly-crawl-search-4e47439c -d '<json body>'
```

Example prompt: Search the web for 'best electric vehicles 2025' and return the top 10 results — I need the current leading sources on this topic.

## When to prefer this

Use this endpoint when you need to programmatically search the web and retrieve structured search results without building your own scraping infrastructure. It's particularly useful when you need to gather current web information, monitor what sources exist on a topic, or feed search results into a downstream AI pipeline. Prefer this over general HTTP fetching when you need search-engine-level result ranking and discovery rather than fetching a known URL.

## Known failure modes

- Missing required 'query' field returns an error response with success: false
- Invalid or empty query string may return no results
- Network or scraping block may cause the crawl to fail silently
- Rate limiting or payment issues on the x402 Base chain may prevent the call from executing
- Num parameter out of range may produce unexpected result counts

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing structured search results from the crawled web search, including relevant web pages and their metadata matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "num": {
   "type": "number",
   "description": "num"
  },
  "query": {
   "type": "string",
   "description": "query"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-crawl-search-4e47439c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
