# spipe Web Search

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

Performs a web search query and returns ranked results, filterable by recency, country, language, and safe search level

## Facts

- Endpoint: GET https://spip40.vercel.app/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spipe-web-search-4b46aa18
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XRdQPtTHx1QqPuQa_KN-M

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-4b46aa18
```

Example prompt: Search the web for the latest developments in quantum computing from the past week — give me 10 results in English from the US.

## When to prefer this

Choose this endpoint when an AI agent needs live web search results with filtering by recency, geography, and language, especially in a pay-per-call context via x402 on Base where no API key subscription is needed. Prefer it over subscription-based search APIs when you want micropayment-based access with no upfront commitment.

## Known failure modes

- Missing required 'q' parameter returns a 400 error
- Payment not provided or rejected results in a 402 Payment Required response
- Invalid country or language code may return no results or an error
- Count outside the 1-20 range may be rejected or clamped
- Network or upstream search provider outage yields a 503 or timeout

## How this service works

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

## Output

A JSON object containing ranked web search results matching the query, including page titles, URLs, and snippets, filtered according to the specified country, language, freshness, result count, and safe search parameters.

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