# Suverse Anime Character Search (Jikan/MyAnimeList)

> Suverse Anime Character Search (Jikan/MyAnimeList) 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).

Searches anime and manga characters by name on MyAnimeList via the Jikan v4 API, returning character ID, name, nicknames, and favorites count.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-character-search
- 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-character-search-jikan-myanimelist-f04ffdb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AkDDr06Mu6KKH_geI2y6b

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-character-search-jikan-myanimelist-f04ffdb7 -d '<json body>'
```

Example prompt: Can you search MyAnimeList for the character 'Rem' from Re:Zero and tell me her character ID, any nicknames, and how many favorites she has?

## When to prefer this

Use this endpoint when an agent needs to resolve an anime or manga character name to a MyAnimeList character ID, retrieve official nicknames, or check a character's popularity (favorites count) without needing an API key. Prefer this over direct Jikan calls when you want a keyless, proxied, pay-per-call option. Not suitable for full character profile details, images, or voice actor data.

## Known failure modes

- No characters found for the given name (empty results array)
- Jikan API rate limiting causing upstream timeout or 429 errors
- Misspelled character name yields zero or irrelevant results
- Ambiguous character names may return multiple unrelated characters requiring disambiguation
- Upstream Jikan/MyAnimeList service downtime leading to 502 or 503 errors

## How this service works

Search anime and manga characters by name on MyAnimeList; returns character ID, name, nicknames and favorites count. Keyless Jikan v4. For agents looking up a character.

## Output

Returns a list of matched characters from MyAnimeList, each with a character ID (MAL ID), full name, known nicknames, and the number of times the character has been favorited by users on the platform.

## 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-character-search-jikan-myanimelist-f04ffdb7/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)
