# Suverse KB Wikipedia Media List

> Suverse KB Wikipedia Media List 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-15).

Retrieves all media items (images, audio, video) from an English Wikipedia article by title via the Wikimedia REST API, returning type, title, and multi-resolution source URLs.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-kb-media-list
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-kb-wikipedia-media-list-51c099ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6it7p3C51S-Cvvrd-fU2i

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-kb-wikipedia-media-list-51c099ce -d '<json body>'
```

Example prompt: Can you pull all the images, audio, and video from the Wikipedia article on 'Mount Everest' so I can use them to illustrate that topic?

## When to prefer this

Choose this endpoint when you need to enumerate all media assets (images, audio, video) from a specific English Wikipedia article by its exact title, especially for entity enrichment workflows where you want multi-resolution image URLs without needing a Wikipedia API key. Prefer this over scraping Wikipedia directly or using the full Wikipedia API when you just need the media list for a known article title.

## Known failure modes

- Article title not found on English Wikipedia — returns empty list or error
- Ambiguous or redirected title may return unexpected article's media
- Wikipedia article exists but has no media items — returns empty list
- Rate limiting or upstream Wikimedia API downtime causes failure
- Malformed article title (e.g. incorrect casing or special characters) leads to no match

## How this service works

Media items (images, audio, video) on an English Wikipedia article by title via the Wikimedia REST API, no key. Each item has type, title, and source URLs at multiple resolutions. For agents enriching entities with imagery.

## Output

A list of media items associated with the specified English Wikipedia article, where each item includes its type (image, audio, or video), a title, and source URLs at multiple resolutions or quality levels, sourced from the Wikimedia REST API.

## 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-kb-wikipedia-media-list-51c099ce/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)
