# spipe Research API

> spipe Research API is a paid API for AI agents from spip33.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Performs deep web research on a given question, combining web search and content extraction to synthesize an answer

## Facts

- Endpoint: POST https://spip33.vercel.app/research
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/spipe-research-api-589af804
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mBXXNy4e0E78fSc5xvGxu

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-research-api-589af804 -d '<json body>'
```

Example prompt: Do a deep research dive on the competitive landscape of AI coding assistants — who are the main players, their pricing, and key differentiators. Use exhaustive effort so I get a thorough answer.

## When to prefer this

Choose this endpoint when you need a synthesized, multi-source research answer rather than a single web page or search result list. It is well-suited for complex questions requiring content extraction and synthesis across many sources, especially when you can tune the effort level from quick lite lookups to exhaustive deep dives. Prefer this over raw search APIs when you want a ready-to-use answer, not raw links.

## Known failure modes

- Input question exceeds 40,000 character limit — request rejected
- Invalid research_effort enum value — request rejected
- Payment not received or insufficient USDC — 402 error returned
- Upstream web search or content extraction failure — partial or empty results
- Timeout on exhaustive research tasks — may return incomplete synthesis

## How this service works

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

## Output

A structured JSON object containing synthesized research findings drawn from web search and content extraction, answering the submitted research question with depth proportional to the chosen effort level (lite, standard, deep, or exhaustive).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Research question (max 40,000 chars)"
  },
  "research_effort": {
   "enum": [
    "lite",
    "standard",
    "deep",
    "exhaustive"
   ],
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spipe-research-api-589af804/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from spip33.vercel.app](https://www.zero.xyz/host/spip33.vercel.app/llms.txt)
