# SiteSignal Wikipedia Summary

> SiteSignal Wikipedia Summary is a paid API for AI agents from trinity-throw-thursday-gravity.trycloudflare.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a bounded, source-linked summary of a single Wikipedia page via the Wikimedia REST API, supporting multiple languages.

## Facts

- Endpoint: GET https://trinity-throw-thursday-gravity.trycloudflare.com/x402/wikipedia-summary
- 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/sitesignal-wikipedia-summary-9abd0f0b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dcCqvo2wg9b8HCMItA5jB

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 sitesignal-wikipedia-summary-9abd0f0b
```

Example prompt: Can you pull the Wikipedia summary for 'Nikola Tesla' in English and give me the key points?

## When to prefer this

Choose this endpoint when you need a quick, authoritative, source-linked summary of a well-known topic that has a Wikipedia page, especially when you need multilingual support across en/de/es/fr/it/ja/pt. It is ideal for enriching agent responses with factual background context without needing a full web search. Prefer alternatives if you need real-time information, niche topics without Wikipedia coverage, or languages outside the supported set.

## Known failure modes

- Wikipedia page not found for the given title — returns 404 or empty result
- Ambiguous title matching multiple Wikipedia disambiguation pages — may return wrong article or error
- Unsupported language code provided — only en, de, es, fr, it, ja, pt are accepted
- Title exceeds 200 character limit — request rejected by schema validation
- Wikimedia REST API rate limiting or temporary unavailability — upstream timeout or 503 error
- Cloudflare tunnel instability causing intermittent connection failures

## How this service works

Return a bounded source-linked summary for one public Wikipedia page through Wikimedia's REST API.

## Output

Returns a bounded plain-text summary of the requested Wikipedia page, with source attribution linking back to the original Wikimedia article. Includes the page title, a concise excerpt of the article's lead section, and a canonical URL to the full Wikipedia page.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "title"
     ],
     "properties": {
      "title": {
       "type": "string",
       "maxLength": 200,
       "minLength": 1
      },
      "language": {
       "enum": [
        "en",
        "de",
        "es",
        "fr",
        "it",
        "ja",
        "pt"
       ],
       "type": "string",
       "default": "en"
      }
     }
    }
   },
   "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/sitesignal-wikipedia-summary-9abd0f0b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trinity-throw-thursday-gravity.trycloudflare.com](https://www.zero.xyz/host/trinity-throw-thursday-gravity.trycloudflare.com/llms.txt)
