# Suverse Anime Top Charts

> Suverse Anime Top Charts 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).

Returns the top-ranked anime from MyAnimeList via Jikan v4, including title, score, rank, popularity, type, episode count, and synopsis.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-top
- 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-anime-top-charts-5b5c5e2b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MYs5MIsP-TVSpEogO-ww8

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-anime-top-charts-5b5c5e2b -d '<json body>'
```

Example prompt: What are the top-ranked anime on MyAnimeList right now? Give me the titles, scores, ranks, and a brief synopsis for each.

## When to prefer this

Choose this endpoint when you need a ready-made, keyless ranked list of top anime from MyAnimeList without having to integrate directly with the Jikan API or manage your own API keys. It is ideal for agents that need to surface anime recommendations, build leaderboards, or populate watchlists with authoritative MAL data at low cost per call.

## Known failure modes

- Jikan API rate limiting or downtime causing fetch failure
- Empty or malformed response if upstream MyAnimeList data is temporarily unavailable
- HTTP 402 payment required if x402 payment header is missing or invalid
- Network timeout if the proxy service is unreachable

## How this service works

Top anime ranked from MyAnimeList: title, score, rank, popularity, type, episode count and synopsis. Keyless Jikan v4. For agents surfacing the best-rated anime.

## Output

A list of top-ranked anime entries sourced from MyAnimeList via Jikan v4, each containing the title, numerical score, rank position, popularity ranking, media type (TV, movie, OVA, etc.), episode count, and a text synopsis.

## 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-anime-top-charts-5b5c5e2b/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)
