# Suverse Anime Jikan Character Detail

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

Fetches an anime or manga character's canonical name and favorites count from MyAnimeList by character ID, via the Jikan v4 API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-jikan-character-detail
- Price: $0.055/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-jikan-character-detail-9eef8b3c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V8tdrmoZ-eCcQoKBygA3l

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-character-detail-9eef8b3c -d '<json body>'
```

Example prompt: Can you pull up the MyAnimeList character profile for character ID 1 — I want to know the canonical name and how many people have favorited them?

## When to prefer this

Choose this endpoint when you need quick, keyless access to a MyAnimeList character's canonical name and favorites count by character ID, without managing your own Jikan API integration or MAL credentials. Ideal for enriching anime databases, building popularity rankings, or resolving character identities programmatically.

## Known failure modes

- Invalid or non-existent MAL character ID returns an error or empty result
- Jikan API rate limiting or downtime causes request failure
- Malformed request body results in a 400-level error
- Payment failure (x402) blocks the request before it reaches the upstream API

## How this service works

Fetch an anime or manga character profile by MyAnimeList id: canonical name and favorites count. Backed by the keyless Jikan v4 API (MyAnimeList). Pass a MAL character id like 1 for Spike Spiegel.

## Output

Returns the character's canonical name as listed on MyAnimeList and their total favorites count, sourced from the 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-jikan-character-detail-9eef8b3c/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)
