# Suverse Anime Jikan Detail (MAL)

> Suverse Anime Jikan Detail (MAL) is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-15).

Fetches full anime details by MyAnimeList ID, returning title, type, episode count, community score, and broadcast year via the Jikan v4 API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-jikan-detail-mal
- Price: $0.06/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-jikan-detail-mal-d4d518ab
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rQXBqhlKubyOMAN0IrJ2Z

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-jikan-detail-mal-d4d518ab -d '<json body>'
```

Example prompt: Can you pull up the full details for Cowboy Bebop — the MyAnimeList ID is 1 — including its episode count, community score, broadcast year, and type?

## When to prefer this

Choose this endpoint when you need structured anime metadata (title, type, episodes, score, year) indexed by MyAnimeList ID and want a keyless, pay-per-call approach without managing Jikan API credentials directly. Prefer this over direct Jikan API calls when operating in an x402-payment agent context.

## Known failure modes

- Invalid or non-existent MAL ID returns an error or empty result
- Jikan API rate limit exceeded causing a failed response
- Network timeout if the upstream Jikan v4 API is slow or unavailable
- Malformed request body causes a 400 error

## How this service works

Fetch full anime details by MyAnimeList id: title, type, episode count, community score and broadcast year. Backed by the keyless Jikan v4 API (MyAnimeList). Pass a MAL anime id like 1 for Cowboy Bebop.

## Output

Returns structured anime details including title, anime type (e.g. TV, Movie, OVA), total episode count, MyAnimeList community score, and broadcast year for the given MAL anime ID.

## 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-jikan-detail-mal-d4d518ab/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)
