# spipe Web Search

> spipe Web Search is a paid API for AI agents from spip37.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

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

## Facts

- Endpoint: GET https://spip37.vercel.app/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spipe-web-search-1d2d1aab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gt8aNZLpZJHpHxdVvif7K

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-1d2d1aab
```

Example prompt: Search the web for the latest news about AI regulation in the US, give me 10 results from the past week, using strict safe search.

## When to prefer this

Choose this endpoint when your agent needs live web search results with fine-grained control over recency, country, language, and safe search, especially in x402/Base payment-enabled workflows where per-call micropayment billing is acceptable.

## Known failure modes

- Missing required 'q' parameter returns an error
- Count outside 1-20 range may be rejected or clamped
- Invalid country or language codes may produce no results or an error
- Freshness filter may return fewer results than requested if content is sparse
- Payment failure (x402) if USDC balance is insufficient

## 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 given query, including page titles, URLs, and snippets, filtered by the requested count, country, language, freshness, and safe search level.

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