# Suverse Wikipedia Article Summary

> Suverse Wikipedia Article Summary is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Fetches a concise summary of a named English Wikipedia article, returning the extract, description, thumbnail, and canonical URL.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wiki-summary
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-wikipedia-article-summary-a1af714c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-7GG6yCkUE9o4HwBHx53o

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-wikipedia-article-summary-a1af714c -d '<json body>'
```

Example prompt: Can you pull the Wikipedia summary for 'Nikola Tesla' — I need the short description, extract, and canonical URL to include in my report?

## When to prefer this

Choose this endpoint when you need structured encyclopedic context for a specific named entity or topic — particularly when you already know the Wikipedia article title. It is preferable to a general web search when you need a clean, structured response (extract, thumbnail, URL) rather than raw web results, and when you want authoritative, citation-ready content. It complements the sibling random-Wikipedia endpoint when you need a targeted lookup rather than random discovery.

## Known failure modes

- Article title not found — Wikipedia returns a 404-style missing page response
- Disambiguation page returned when title is ambiguous (e.g. 'Mercury' could be planet, element, or god)
- Empty extract returned for stub or redirect articles
- Rate limiting or upstream Wikipedia API downtime causing 503 errors
- Payment failure or insufficient USDC balance causing x402 rejection

## How this service works

Concise summary of an English Wikipedia article by title via the REST API, no key. Returns the extract, description, thumbnail, and canonical URL. For AI agents grounding answers and enriching entities with encyclopedic context.

## Output

Returns the Wikipedia article extract (a short plain-text summary), a brief description of the topic, a thumbnail image URL, and the canonical Wikipedia page URL for the requested article title.

## 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-wikipedia-article-summary-a1af714c/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)
