# Suverse Wikiquote Summary Proxy

> Suverse Wikiquote Summary Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.055/call, status unknown (last checked 2026-09-16).

Fetches the Wikiquote REST summary for a named page, returning the title, display title, and a plaintext extract about the subject.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-quotes-wikiquote-summary
- Price: $0.055/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-wikiquote-summary-proxy-2fa719bf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vQBWpEDOaZmuXhmDyAKO9

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 suverse-wikiquote-summary-proxy-2fa719bf -d '<json body>'
```

Example prompt: Can you pull up the Wikiquote summary for Oscar_Wilde — I need the title and a plaintext description of who he was for some quote attribution context.

## When to prefer this

Use this endpoint when you need quick, keyless access to Wikiquote's REST summary for a known subject — particularly for author context, quote attribution, or enriching records with short biographical descriptions. Prefer it over full Wikipedia lookups when you specifically need quotation-source context rather than a full encyclopedia article.

## Known failure modes

- Page not found if the subject name doesn't match a Wikiquote article slug exactly (case-sensitive)
- Wikiquote may return an empty or disambiguation extract for ambiguous names
- Rate limiting or availability issues from the upstream Wikiquote REST API
- Missing or null extract field if the Wikiquote page lacks a summary section

## How this service works

Fetch the Wikiquote REST summary for a page (e.g. Albert_Einstein). Returns title, displaytitle and a plaintext extract describing the subject. Keyless (sends a User-Agent). Useful for quotation-source context and author lookups.

## Output

Returns the Wikiquote page title, displaytitle (formatted), and a plaintext extract summarizing the subject — typically a short biographical or topical description of the person or concept. No API key required; the proxy sends a User-Agent header on behalf of the caller.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-wikiquote-summary-proxy-2fa719bf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
