# ScrapFly Web Search API

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

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

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/search/web
- Price: $0.15/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-a3205469
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hl4YmroHm-jI_okV_lElt

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-a3205469 -d '<json body>'
```

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

## When to prefer this

Use this endpoint when an AI agent needs to retrieve live web search results programmatically, especially when integrated into a pay-per-use x402 workflow on the Base chain. Prefer this over static knowledge when freshness of information matters.

## Known failure modes

- Missing required 'query' field returns error
- Payment not processed results in 402 response
- Query too broad returns low-quality or empty results
- Network timeout from underlying scraping infrastructure
- Rate limiting if too many requests are made in quick succession

## 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 web search results for the given query, including relevant page listings, URLs, and snippets.

## 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-a3205469/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
