# spipe Answer API

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

Answers natural language questions using web search, content extraction, and AI research synthesis, with optional country, language, and freshness filters.

## Facts

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

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-answer-api-18f7340a -d '<json body>'
```

Example prompt: Search the web and give me a synthesized answer to this question: 'What are the latest AI agent frameworks released in 2025?' — use English results and make sure the information is fresh.

## When to prefer this

Choose this endpoint when you need a synthesized, research-grade answer to a natural language question backed by live web data — especially when you need freshness control (e.g. recent events), localization (country/language), or a combined search-and-extraction result rather than a raw list of URLs. Ideal for AI agents that need to answer factual or research questions without maintaining their own search index.

## Known failure modes

- Query parameter missing — returns 400 error if 'query' field is not provided
- No results found for very niche or malformed queries
- Payment not received — returns 402 if x402 USDC payment on Base is not completed
- Freshness filter returns no recent results for obscure topics
- Language or country codes not recognized — may default to English/global results
- Slow or failed web content extraction for paywalled or blocked sources

## How this service works

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

## Output

A JSON object containing an AI-synthesized answer to the submitted question, drawn from live web search and content extraction, potentially including source references, key facts, and a structured summary based on the query and optional filters applied.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string",
   "description": "Question to answer"
  },
  "country": {
   "type": "string"
  },
  "language": {
   "type": "string"
  },
  "freshness": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/spipe-answer-api-18f7340a/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)
