# Suverse Anime Schedule

> Suverse Anime Schedule 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-14).

Returns the weekly anime airing schedule organized by weekday, with title, type, MAL score, and broadcast time, sourced from MyAnimeList via Jikan v4.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-schedule
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-anime-schedule-dbb5eae1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_frhOrMtqaojwGC90mMBJ0

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-schedule-dbb5eae1 -d '<json body>'
```

Example prompt: Can you pull up the weekly anime airing schedule for this season — I want to see what's broadcasting each day of the week along with the MAL score and air time for each show?

## When to prefer this

Use this endpoint when you need a structured weekly anime broadcast schedule with MAL scores and air times without requiring an API key. Ideal for agents building anime calendars, recommendation flows, or daily episode reminders based on the current season.

## Known failure modes

- Jikan v4 upstream rate limiting or downtime causing empty or error responses
- Missing broadcast time data for some titles if MAL data is incomplete
- Score may be null for newly airing or unrated series
- Stale schedule data if Jikan cache has not refreshed

## How this service works

Anime airing schedule by weekday from MyAnimeList: title, type, score and broadcast time. Keyless Jikan v4. For agents building a weekly anime calendar.

## Output

A weekly anime schedule grouped by weekday, where each entry includes the anime title, media type (TV, OVA, etc.), MyAnimeList score, and broadcast time. Data is sourced from MyAnimeList via the keyless Jikan v4 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-anime-schedule-dbb5eae1/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)
