# spipe Web Search

> spipe Web Search is a paid API for AI agents from spip3.vercel.app, paid per call via x402, $0.01/call, status healthy (last checked 2026-09-14, last successful call 2026-09-13).

Performs a web search and returns ranked results for a given query, with filtering by recency, country, language, and safe search level

## Facts

- Endpoint: GET https://spip3.vercel.app/search
- Price: $0.01/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-14
- Last successful call: 2026-09-13
- Success rate: 100% of calls made through Zero
- Rating: 3.3 / 5 from 1 review
- Activations on Zero: 40
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spipe-web-search-b8068437
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HzESdVoO3VbyX3L5xsdUX

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 spipe-web-search-b8068437
```

Example prompt: Search the web for the latest news on quantum computing breakthroughs, give me 10 results from the past week, using US region and English language.

## When to prefer this

Choose this endpoint when an AI agent needs live, real-time web search results with flexible filtering by geography, language, and recency, particularly in x402/Base payment-gated workflows. Prefer it over static knowledge lookups when freshness matters or when the agent needs to surface URLs and snippets from the live web.

## Known failure modes

- Missing required 'q' parameter returns a 400 or error response
- Payment not provided or insufficient USDC triggers an x402 payment-required response
- Invalid country or language code may return no results or an error
- Freshness filter too narrow returns empty result set
- Count exceeding 20 or below 1 may be rejected or clamped
- Service temporarily unavailable on Vercel infrastructure returns 5xx

## How this service works

Web search, content extraction, and research APIs for AI agents. x402 on Base.

## Output

Returns a JSON object containing ranked web search results for the query, typically including page titles, URLs, and text snippets, filtered by the specified country, language, freshness, and safe search settings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "description": "Search query"
  },
  "count": {
   "type": "integer",
   "description": "Number of results (1-20)"
  },
  "country": {
   "type": "string",
   "description": "Country code (US, GB, etc.)"
  },
  "language": {
   "type": "string",
   "description": "Language code"
  },
  "freshness": {
   "enum": [
    "day",
    "week",
    "month",
    "year"
   ],
   "type": "string",
   "description": "Filter by recency"
  },
  "safesearch": {
   "enum": [
    "off",
    "moderate",
    "strict"
   ],
   "type": "string",
   "description": "Safe search level"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spipe-web-search-b8068437/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from spip3.vercel.app](https://www.zero.xyz/host/spip3.vercel.app/llms.txt)
