# Suverse Manga Search (MyAnimeList via Jikan v4)

> Suverse Manga Search (MyAnimeList via Jikan v4) 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 MyAnimeList for manga by title and returns score, chapters, volumes, status, published dates, and synopsis using the keyless Jikan v4 API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-manga-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-manga-search-myanimelist-via-jikan-v4-0d5e278f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZTtvZvFMV4F1z5hqOZ0Fa

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-manga-search-myanimelist-via-jikan-v4-0d5e278f -d '<json body>'
```

Example prompt: Can you look up 'Berserk' on MyAnimeList and tell me its score, how many chapters and volumes it has, whether it's still ongoing, and give me a quick synopsis?

## When to prefer this

Choose this endpoint when you need structured manga metadata (score, chapters, volumes, status, synopsis) by title from MyAnimeList without requiring an API key. Ideal for agents that need to retrieve canonical manga information quickly without managing Jikan credentials directly. Not suitable for anime (TV/film) lookups or when you need user-specific MAL data like reading lists or personal scores.

## Known failure modes

- Manga not found if title spelling is significantly off or too vague
- Jikan API rate limits may cause temporary failures or delayed responses
- Ambiguous titles may return unexpected results (e.g. searching 'Naruto' might return related spin-offs)
- Empty or partial data if MyAnimeList lacks information for an obscure title
- Proxy service unavailability or payment failure returns 402 or 5xx errors

## How this service works

Search manga by title on MyAnimeList; returns score, chapters, volumes, status, published dates and synopsis. Keyless Jikan v4. For agents finding a manga by name.

## Output

Returns structured manga data from MyAnimeList including: title, MAL score (0-10), total chapter count, volume count, serialization/publication status (e.g. Finished, Publishing), published date range, and a full 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-manga-search-myanimelist-via-jikan-v4-0d5e278f/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)
