# ScrapFly Crawl Search API

> ScrapFly Crawl Search API is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-14).

Performs a web search query and returns crawled search results with structured data

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/crawl/search
- Price: $0.09/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-api-8ad4cc79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C9QOSQ1WtXl_5ZxAnEMA0

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-api-8ad4cc79 -d '<json body>'
```

Example prompt: Search the web for 'best open-source LLMs in 2025' and return the top 5 results with their content.

## When to prefer this

Choose this endpoint when you need programmatic web search results with crawled page content rather than just URLs, especially in an agentic pipeline that pays per-request via x402 on Base chain. It is well-suited for research, competitive intelligence, or content aggregation tasks where structured web data is needed without managing a scraping infrastructure yourself.

## Known failure modes

- Missing required 'query' field returns an error response with success: false
- Invalid or empty query string may return zero results
- Rate limiting or payment issues on Base chain may block the request
- Network timeout if crawled pages are slow to respond
- Query returning no indexed results yields an empty data set

## 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 — likely including page titles, URLs, snippets, and crawled content — for the provided query string.

## 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-api-8ad4cc79/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
