Overview
MyAnimeList (MAL) is the most popular anime and manga tracking site, and its official API lets you search titles, manage user watchlists, and retrieve community statistics. OAuth 2.0 with PKCE is required for all endpoints, making it more complex to set up than alternatives like Jikan. Developers building production anime apps benefit most from the official API.
Beginner Tip
Consider using the unofficial Jikan API first if you just want to read MAL data without OAuth setup. The official MAL API is best when you need to read or write a user watchlist.
Available Data
Example Response
{
"id": 1,
"title": "Attack on Titan",
"episodes": 75,
"status": "Finished Airing",
"score": 8.5,
"genres": [
"Action",
"Drama",
"Fantasy"
],
"synopsis": "In a world where humanity lives within enormous walled cities..."
} Field Reference
node.id The MAL unique ID for the anime. node.title The title of the anime series. node.mean Average community score from 0.0 to 10.0. node.synopsis Plot summary returned only when explicitly requested in fields parameter. node.num_episodes Total episode count for the series. Implementation Example
const url = "https://myanimelist.net/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Similar APIs
View All →AniAPI
AniAPI aggregates anime data from multiple sources and lets you search titles, retrieve episode lists, and sync watch progress with popular trackers.
AniList
AniList exposes a GraphQL API covering anime and manga metadata, user lists, reviews, and social features.
Kitsu
Kitsu is a JSON:API-compliant anime and manga tracking platform that lets you search titles, manage user libraries, and fetch detailed series metadata.
Shikimori
Shikimori is a Russian-language anime and manga tracking platform whose API exposes anime metadata, user rates, forums, and calendar data.
AniDB
AniDB is one of the oldest and most detailed anime databases, tracking episode titles, staff, characters, and file-level metadata used by media players and subtitle groups.