# Suverse Wikipedia Featured Feed

> Suverse Wikipedia Featured Feed 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-16).

Fetches Wikipedia's featured content for today via the Wikimedia REST API, including the featured article, most-read pages, picture of the day, top news, and on-this-day events.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-kb-featured-feed
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-wikipedia-featured-feed-814b243e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6bac-NjK-v9AfljpnUx8p

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-featured-feed-814b243e -d '<json body>'
```

Example prompt: Pull today's Wikipedia featured content for me — the featured article, most-read pages, picture of the day, news highlights, and any on-this-day events — so I can put together a daily digest.

## When to prefer this

Choose this endpoint when you need a single, aggregated daily content snapshot from Wikipedia without managing a Wikimedia API key yourself. It is ideal for agents building daily digests, morning briefing workflows, or trivia bots that need featured articles, trending pages, news, and historical events in one call. Prefer it over direct Wikimedia API calls when you want a managed proxy with pay-per-use pricing via x402 and no authentication setup.

## Known failure modes

- Wikimedia REST API downtime causes upstream fetch failure
- Rate limiting or network timeout from the Wikimedia origin
- Malformed or empty POST body returns a 400 error
- Service unavailable during Wikimedia maintenance windows
- x402 payment failure prevents request processing

## How this service works

Wikipedia featured content for a date via the Wikimedia REST API, no key. Returns the featured article of the day, most-read pages, picture of the day, news, and on-this-day events. For agents building daily digests.

## Output

A structured JSON response containing today's Wikipedia featured article summary, a list of most-read pages, the picture of the day with caption, curated top news stories, and a collection of on-this-day historical events — all sourced from the Wikimedia REST API without requiring an API key.

## 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-featured-feed-814b243e/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)
