# Jikan Manga Detail Lookup (via proxy.suverse.io)

> Jikan Manga Detail Lookup (via proxy.suverse.io) 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 manga metadata from MyAnimeList by MAL manga ID, returning title, type, chapter count, and community score via the keyless Jikan v4 API.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-anime-jikan-manga-detail
- 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/jikan-manga-detail-lookup-via-proxy-suverse-io-3e0979b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q_pRWXi8LRgquFtzg81F-

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 jikan-manga-detail-lookup-via-proxy-suverse-io-3e0979b0 -d '<json body>'
```

Example prompt: Can you pull up the details for the manga with MyAnimeList ID 1 — I want to know its title, type, how many chapters it has, and its community score?

## When to prefer this

Use this endpoint when you need quick, keyless access to MyAnimeList manga metadata by MAL ID without managing your own Jikan API integration. Ideal for enriching manga databases, building recommendation engines, or verifying manga details programmatically. Prefer this over direct Jikan calls when you want a hosted, pay-per-use proxy that avoids rate-limit management.

## Known failure modes

- Invalid or non-existent MAL manga ID returns a 404 or empty result from Jikan
- Jikan API rate limiting may cause intermittent failures or slow responses
- Manga with no community score yet returns null or zero for score field
- Chapter count may be null for ongoing manga with no confirmed chapter total
- Network timeout if Jikan upstream is slow or unavailable

## How this service works

Fetch manga details by MyAnimeList id: title, type, chapter count and community score. Backed by the keyless Jikan v4 API (MyAnimeList). Pass a MAL manga id like 1 for Monster.

## Output

Returns structured manga metadata from MyAnimeList including the manga's title, type (e.g. manga, manhwa, manhua, one-shot), total chapter count, and the MyAnimeList community score for the given MAL manga 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/jikan-manga-detail-lookup-via-proxy-suverse-io-3e0979b0/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)
