# Wikipedia Article Summary Fetcher

> Wikipedia Article Summary Fetcher is a paid API for AI agents from lab.paidapis.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches a structured summary (title, source URL, and paragraphs) of any Wikipedia article by title

## Facts

- Endpoint: GET https://lab.paidapis.net/api/wiki-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/wikipedia-article-summary-fetcher-aea953c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OLY0c8GpX2WXu_RgqEWZP

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-article-summary-fetcher-aea953c7
```

Example prompt: Can you pull me the Wikipedia summary for the article titled 'Byzantine Empire' and give me the key paragraphs?

## When to prefer this

Use this endpoint when you need structured, paragraph-level Wikipedia content for a known article title and want it returned as clean JSON rather than raw HTML. It is ideal for agents that need encyclopedic background information on a topic, want to cite a Wikipedia source URL, or need to ingest article text into a knowledge base. Prefer it over full web scraping when the target is always Wikipedia and you want consistent, schema-stable output at low cost ($0.01 USDC per call).

## Known failure modes

- Article title not found on Wikipedia — returns an error or empty result
- Ambiguous title matches multiple Wikipedia pages — may return unexpected article
- Wikipedia rate-limiting or unavailability — upstream fetch fails
- Misspelled or malformed title input — no match returned
- Non-English or redirect-only titles may not resolve correctly

## How this service works

Format conversion: Wikipedia's own REST API serves full rendered HTML, not JSON. This fetches an article's lead section (?title=) and returns clean, tag-free paragraph text as JSON.

## Output

A JSON object containing the article title, the Wikipedia source URL, an array of summary paragraph strings, and a timestamp of when the content was converted. This gives the agent structured, ready-to-use encyclopedic text for a given topic.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "title"
 ],
 "properties": {
  "title": {
   "type": "string",
   "description": "Wikipedia article title."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "title": {
   "type": "string"
  },
  "sourceUrl": {
   "type": "string"
  },
  "paragraphs": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "convertedAt": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wikipedia-article-summary-fetcher-aea953c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lab.paidapis.net](https://www.zero.xyz/host/lab.paidapis.net/llms.txt)
