Jikan
Unofficial MyAnimeList data as a keyless REST API
Jikan mirrors MyAnimeList's public pages into a clean, keyless JSON API covering anime, manga, characters, and more. Query by ID or search and get rich metadata like scores, episode counts, and airing status. Data is cached and read-only; MyAnimeList owns the underlying content.
GET https://api.jikan.moe/v4/anime/1
{
"data": {
"mal_id": 1,
"url": "https://myanimelist.net/anime/1/Cowboy_Bebop",
"title": "Cowboy Bebop",
"type": "TV",
"episodes": 26,
"status": "Finished Airing",
"year": 1998,
"score": 8.75
}
}curl "https://api.jikan.moe/v4/anime/1"const res = await fetch("https://api.jikan.moe/v4/anime/1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.jikan.moe/v4/anime/1")
print(res.json())/v4/anime/1PROBEDAnime details by MyAnimeList ID.
/v4/anime?q=cowboy%20bebop&limit=5Search anime by title.
/v4/top/animeTop-ranked anime list.
/v4/seasons/nowAnime airing in the current season.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Jikan: common questions
Is Jikan free to use?
Yes — Jikan is a free anime API. Free tier: Free, no API key. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Jikan need an API key?
No — Jikan needs no API key or signup. You can call it straight away; rate limits still apply (3 requests/sec, 60 requests/min (per Jikan v4 docs)).
Can I call Jikan from the browser?
Yes — Jikan returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Jikan up right now?
As of our last scheduled check, Jikan is unmonitored. We re-probe it every sweep — the status badge and uptime chart above always show the latest.