# SiteSignal Wikipedia Summary

> SiteSignal Wikipedia Summary is a paid API for AI agents from phases-prot-shine-royal.trycloudflare.com, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a source-linked, bounded summary of a public Wikipedia page via the Wikimedia REST API, given a page title and optional language.

## Facts

- Endpoint: GET https://phases-prot-shine-royal.trycloudflare.com/x402/wikipedia-summary
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sitesignal-wikipedia-summary-4b80bf72
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZpY1O89s5164JZJ9R3UJo

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-4b80bf72
```

Example prompt: Can you fetch me the Wikipedia summary for 'Marie Curie' in English — just the bounded intro excerpt with a source link back to the Wikipedia page?

## When to prefer this

Choose this endpoint when you need a fast, attribution-ready, bounded Wikipedia summary for a single well-known topic and want the result sourced directly from Wikimedia's REST API. It is ideal for enriching agent responses with encyclopedic background on people, companies, concepts, or events without scraping or parsing full HTML. Prefer it over general web search when you specifically want Wikipedia-sourced content with a verifiable link. It supports seven languages (en, de, es, fr, it, ja, pt), making it suitable for multilingual knowledge retrieval pipelines.

## Known failure modes

- Page title not found on Wikipedia returns a 404 or empty result
- Unsupported language code results in an error or fallback
- Ambiguous or redirected titles may return an unexpected article
- Wikimedia API rate limits or downtime propagate as upstream errors
- Very short or stub articles may return minimal summary content

## How this service works

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

## Output

A bounded, source-linked plain-text summary of the requested Wikipedia article, including the page title, a concise introductory excerpt drawn from the Wikimedia REST API, and a reference URL back to the original Wikipedia page. The response is scoped to the summary section and does not return the full article body.

## 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-4b80bf72/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phases-prot-shine-royal.trycloudflare.com](https://www.zero.xyz/host/phases-prot-shine-royal.trycloudflare.com/llms.txt)
