# Wikipedia Summary Lookup

> Wikipedia Summary Lookup is a paid API for AI agents from mcpfax-utility.bowling-anthony.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves the lead summary/extract for a given Wikipedia page by title or topic.

## Facts

- Endpoint: GET https://mcpfax-utility.bowling-anthony.workers.dev/v1/wikipedia
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wikipedia-summary-lookup-3bfcc0fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5uaAHVOyxCxCSb1RjWznd

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 wikipedia-summary-lookup-3bfcc0fb
```

Example prompt: Can you pull up the Wikipedia summary for Marie Curie — just the lead extract that explains who she was and what she's known for?

## When to prefer this

Use this endpoint when you need a concise, encyclopedic overview of a well-known topic, entity, person, place, or concept — especially when you want the authoritative crowd-sourced summary rather than web search snippets. Prefer it over general web search when you specifically want Wikipedia's structured lead extract, or when enriching data records with background descriptions.

## Known failure modes

- Ambiguous title results in wrong article being returned
- Very obscure topics may have no Wikipedia page, returning a not-found error
- Recently created or deleted Wikipedia pages may not be available
- Non-English or alternate language titles may not resolve correctly

## How this service works

Wikipedia summary — Lead summary/extract for a Wikipedia page.

## Output

Returns the lead summary/extract text of the requested Wikipedia page — typically 1-5 paragraphs covering the subject's definition, key facts, and significance, along with the article title and page URL.

## 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"
    }
   },
   "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/wikipedia-summary-lookup-3bfcc0fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mcpfax-utility.bowling-anthony.workers.dev](https://www.zero.xyz/host/mcpfax-utility.bowling-anthony.workers.dev/llms.txt)
