# ScrapFly Web Search API

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

Performs a web search and returns structured search results for a given query string

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/search/web
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-web-search-api-ff9c617a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yS7OftHJp-sa6eBiqu2xk

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-web-search-api-ff9c617a -d '<json body>'
```

Example prompt: Search the web for 'best open-source LLM frameworks in 2024' and return the top 10 results.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically retrieve web search results for a given query, especially in pay-per-use contexts on the Base blockchain via x402. Suitable for research, fact-finding, or competitive intelligence tasks where broad web coverage is needed rather than a specific URL scrape.

## Known failure modes

- Missing required 'query' parameter returns validation error
- Payment failure (insufficient USDC on Base chain) blocks the request
- Empty or ambiguous query may return low-relevance results
- Rate limiting or timeout if the underlying search provider is unavailable
- Malformed num parameter (non-integer) may cause request rejection

## How this service works

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

## Output

Returns a success boolean and a data object containing structured web search results, including URLs, titles, and snippets 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-web-search-api-ff9c617a/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)
