# Suverse Anime Search (Jikan/MyAnimeList)

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

Search anime by title on MyAnimeList via Jikan v4, returning score, type, episode count, status, aired dates, and synopsis for each match.

## Facts

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

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

Example prompt: Can you search for 'Fullmetal Alchemist: Brotherhood' on MyAnimeList and tell me its score, how many episodes it has, whether it's finished airing, and give me a short synopsis?

## When to prefer this

Choose this endpoint when you need structured anime metadata (score, episodes, status, synopsis) from MyAnimeList by title, without managing your own Jikan API integration or API keys. Ideal for anime discovery agents, recommendation systems, or chatbots that need to enrich anime references with factual data. Prefer this over direct Jikan calls when you want a keyless, pay-per-use proxy with x402 payment.

## Known failure modes

- No matches found for misspelled or obscure title — returns empty results array
- Jikan API rate limit exceeded — returns error or timeout
- Ambiguous title returns multiple unrelated results requiring disambiguation
- Network timeout if Jikan upstream is slow or unavailable
- Very new or unlisted anime may not appear in MyAnimeList database

## How this service works

Search anime by title on MyAnimeList; returns score, type, episodes, status, aired dates and synopsis per match. Keyless Jikan v4. For agents finding an anime by name.

## Output

Returns a list of matching anime entries, each containing the anime title, MAL score (float), media type (TV/Movie/OVA etc.), total episode count, airing status, aired date range, 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-search-jikan-myanimelist-d82ab593/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)
