jikan_moe 3.0.0
jikan_moe: ^3.0.0 copied to clipboard
Jikan (時間) is an unofficial & open-source API for the “most active online anime + manga community and database” — MyAnimeList.
Jikan API #
Jikan (時間) is an unofficial & open-source API for the “most active online anime + manga community and database” — MyAnimeList. Official Docs here
NOTE: Not yet ready for production use.
Dart / Flutter #
Usage example:
// with singletone instance
final anime = await JikanClient.instance.getAnimeById(21); // One Piece
// with Instantiator
final client = JikanClient(); // useful for passing custom http Client
final anime = await client.getAnimeById(21); // One Piece
Anime #
✅ 21/21 endpoints are supported.
Future<AnimeData> getAnimeById(int id)
Future<AnimeFullData> getAnimeFullById(int id)
Future<List<AnimeCharacter>> getAnimeCharacters(int id)
Future<List<AnimeStaff>> getAnimeStaff(int id)
Future<AnimeEpisodes> getAnimeEpisodes(int id, {int page = 1})
Future<AnimeEpisode> getAnimeEpisodeById(int id, {required int episode})
Future<AnimeNews> getAnimeNews(int id, {int page = 1})
Future<List<AnimeForumTopic>> getAnimeForum(int id, {String filter = "all"})
Future<AnimeVideosData> getAnimeVideos(int id)
Future<AnimeVideosEpisodes> getAnimeVideosEpisodes(int id, {int page = 1})
Future<List<AnimePicturesData>> getAnimePictures(int id)
Future<AnimeStatisticsData> getAnimeStatistics(int id)
Future<AnimeMoreInfoData> getAnimeMoreInfo(int id)
Future<List<AnimeRecommendation>> getAnimeRecommendations(int id)
Future<AnimeUserUpdates> getAnimeUserUpdates(int id, {int page = 1})
Future<AnimeReviews> getAnimeReviews(int id, {int page = 1, bool preliminary = true, bool spoilers = false})
Future<List<AnimeRelation>> getAnimeRelations(int id)
Future<AnimeThemesData> getAnimeThemes(int id)
Future<List<AnimeExternal>> getAnimeExternal(int id)
Future<List<AnimeStreaming>> getAnimeStreaming(int id)
Future<AnimeSearchResponse> getAnimeSearch({
bool unapproved = false,
int? page = 1,
int? limit = 25,
String? q,
String? type,
double? score,
double? minScore,
double? maxScore,
String? status,
String? rating,
bool? sfw = true,
String? genres,
String? genresExclude,
String? orderBy,
String? sort,
String? letter,
String? producers,
String? startDate,
String? endDate,
})
Manga #
✅ 14/14 endpoints are supported.
Future<MangaData> getMangaById(int id)
Future<MangaFullData> getMangaFullById(int id)
Future<List<MangaCharacter>> getMangaCharacters(int id)
Future<MangaNews> getMangaNews(int id, {int page = 1})
Future<List<MangaForumTopic>> getMangaTopics(int id, {String filter = "all"})
Future<List<MangaImages>> getMangaPictures(int id)
Future<MangaStatisticsData> getMangaStatistics(int id)
Future<MangaMoreInfoData> getMangaMoreInfo(int id)
Future<List<MangaRecommendation>> getMangaRecommendations(int id)
Future<MangaUserUpdates> getMangaUserUpdates(int id, {int page = 1})
Future<MangaReviews> getMangaReviews(int id, {int page = 1, bool preliminary = true, bool spoilers = false})
Future<List<MangaRelation>> getMangaRelations(int id)
Future<List<MangaExternal>> getMangaExternal(int id)
Future<MangaSearchResponse> getMangaSearch({
bool unapproved = false,
int? page = 1,
int? limit = 25,
String? q,
String? type,
double? score,
double? minScore,
double? maxScore,
String? status,
bool? sfw = true,
String? genres,
String? genresExclude,
String? orderBy,
String? sort,
String? letter,
String? magazines,
String? startDate,
String? endDate,
})
Characters #
Coming soon...
Clubs #
Coming soon...
Genres #
✅ 2/2 endpoints are supported.
Future<List<AnimeGenreData>> getAnimeGenres({
String? filter,
})
Future<List<MangaGenreData>> getMangaGenres({
String? filter,
})
Magazines #
Coming soon...
People #
Coming soon...
Producers #
Coming soon...
Random #
Coming soon...
Recommendations #
Coming soon...
Reviews #
Coming soon...
Schedules #
✅ 1/1 endpoint is supported.
Future<SchedulesResponse> getSchedules({
String? filter,
bool? kids,
bool? sfw,
bool? unapproved,
int? page,
int? limit,
})
Users #
Coming soon...
Seasons #
✅ 4/4 endpoints are supported.
Future<SeasonNowResponse> getSeasonNow({
String? filter,
bool? sfw,
bool? unapproved,
bool? continuing,
int page = 1,
int limit = 25,
})
Future<SeasonGetResponse> getSeason(
int year,
String season, {
String? filter,
bool? sfw,
bool? unapproved,
bool? continuing,
int page = 1,
int limit = 25,
})
Future<SeasonListResponse> getSeasonsList()
Future<SeasonUpcomingResponse> getSeasonUpcoming({
String? filter,
bool? sfw,
bool? unapproved,
bool? continuing,
int page = 1,
int limit = 25,
})
Top #
✅ 5/5 endpoints are supported.
Future<TopAnimeResponse> getTopAnime({
String? type,
String? filter,
String? rating,
bool? sfw,
int page = 1,
int limit = 25,
})
Future<TopMangaResponse> getTopManga({
String? type,
String? filter,
bool? sfw,
int page = 1,
int limit = 25,
})
Future<TopPeopleResponse> getTopPeople({
int page = 1,
int limit = 25,
})
Future<TopCharactersResponse> getTopCharacters({
int page = 1,
int limit = 25,
})
Future<TopReviewsResponse> getTopReviews({
String? type,
bool? preliminary,
bool? spoilers,
int page = 1,
})
Watch #
Coming soon...