# spipe Research API

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

Performs AI-driven web research given a natural language question, with configurable depth from lite to exhaustive

## Facts

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

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

Example prompt: Do a standard-depth research on the competitive landscape of AI coding assistants in 2024 — who the main players are, their pricing, and how they differentiate.

## When to prefer this

Choose this endpoint when you need multi-source web research synthesized into a coherent answer, especially when the question requires gathering and combining information from multiple web pages. It is particularly valuable for deep or exhaustive research tasks where breadth of coverage matters. Prefer over single-URL scrapers or simple search APIs when you need synthesized insight rather than raw results.

## Known failure modes

- Input question exceeds 40,000 character limit — request rejected
- Invalid research_effort enum value — validation error returned
- Network or upstream search service failure — server error response
- Payment not completed via x402 protocol — 402 Payment Required returned
- Timeout for exhaustive research tasks on complex topics

## How this service works

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

## Output

A structured object containing synthesized research findings, sourced from web searches and content extraction, covering the question asked at the requested depth level. May include summaries, key facts, and references depending on research effort.

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