Overview
Shikimori is a Russian-language anime and manga tracking platform whose API exposes anime metadata, user rates, forums, and calendar data. OAuth 2.0 is required for user-specific operations, making initial setup non-trivial. Developers building anime tracker apps targeting the Russian-speaking community will find this API most relevant.
Beginner Tip
Some read-only endpoints like /api/animes work without OAuth if you include your app name in the User-Agent header. Register your application at shikimori.one/oauth/applications to get client credentials.
Available Data
Example Response
{
"name": "Bohemian Rhapsody",
"artist": "Queen",
"album": "A Night at the Opera",
"duration_ms": 354000,
"popularity": 92,
"preview_url": "https://p.scdn.co/mp3-preview/..."
} Field Reference
id Shikimori unique identifier for the anime. name The original Japanese/romaji title of the anime. russian Russian-language title of the anime. score Community average score as a decimal string (e.g. "8.4"). episodes Total planned or aired episode count. status Airing status: anons, ongoing, or released. Implementation Example
const url = "https://shikimori.one/api/doc";
// 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.
MyAnimeList
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.
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.