Anime
This is an object representing an Anime show. The API allows you to retrieve individual Anime as well as a list of them using various filters.
#
The Anime object#
Attributesinteger#
idUnique identifier for an Anime.
integer nullable#
anilist_idAniList external unique identifier.
integer nullable#
mal_idMyAnimeList external unique identifier.
integer nullable#
tmdb_idTheMovieDatabase external unique identifier.
enum#
formatThe show's format destination.
"TV": 0,"TV_SHORT": 1,"MOVIE": 2,"SPECIAL": 3,"OVA": 4,"ONA": 5,"MUSIC": 6
enum#
statusThe show's global release status.
"FINISHED": 0,"RELEASING": 1,"NOT_YET_RELEASED": 2,"CANCELLED": 3
map of strings#
titlesA dictionary of the show's titles organized by localization.
map of strings#
descriptionsA dictionary of the show's descriptions organized by localization.
date nullable#
start_dateThe show's global release date.
date nullable#
end_dateThe known show's global end date.
enum nullable#
weekly_airing_dayThe known show's episode release day.
"Sunday": 0,"Monday": 1,"Tuesday": 2,"Wednesday": 3,"Thursday": 4,"Friday": 5,"Saturday": 6
enum#
season_periodThe season on which the show has been released.
"WINTER": 0,"SPRING": 1,"SUMMER": 2,"FALL": 3,"UNKNOWN": 4
integer nullable#
season_yearThe year on which the show has been released.
integer#
episodes_countNumber of episodes released for the show.
integer nullable#
episode_durationThe show's episode average duration in minutes.
string nullable#
trailer_urlExternal link to the show's trailer video. Possible services:
- Youtube
- Dailymotion
string#
cover_imageThe show's cover image.
bool#
has_cover_imageIndicates if the show has an a cover images associated with it.
string nullable#
cover_colorThe show's cover main color, in HEX
format.
string nullable#
banner_imageThe show's banner image.
array of strings#
genresA collection of the show's associated genres. You can find all possible values here.
array of objects nullable#
sagasA collection of the show's associated sagas.
{ // Map of strings // Contains the saga's title in various localizations "titles": {}
// Map of strings // Contains the saga's description in various localizations "descriptions": {}
// Integer // The saga's first episode number "episode_from": 0
// Integer // The saga's last episode number "episode_to": 0
// Integer // The saga's total episodes count "episodes_count": 0}
integer nullable#
sequelThe show's precedent Anime's unique identifier in story-line.
integer nullable#
prequelThe show's successive Anime's unique identifier in story-line.
float#
scoreThe show's global appreciation indicator. Minimum value is 0
and maximum is 100
.
bool#
nsfwIndicates if the show is marked as NotSafeForWork
array of integers nullable#
recommendationsThe show's recommended Anime's unique identifier because similar. Ordered by descendent rating.
#
Example{ "anilist_id": 21, "mal_id": 21, "format": 0, "status": 1, "titles": { "rj": "ONE PIECE", "en": "ONE PIECE", "jp": "ONE PIECE", "fr": "One Piece", "it": "One Piece" }, "descriptions": { "en": "Gold Roger was known as the Pirate King, the strongest and mo...", "fr": "Il fut un temps où Gold Roger était le plus grand de tous les...", "it": "Monkey D. Rufy è un giovane pirata sognatore che da piccolo h...", "jp": "海賊王を夢見る少年モンキー・D・ルフィを主人公とする、「ひとつなぎの..." }, "start_date": "1999-10-20T00:00:00Z", "end_date": "1970-01-01T00:00:00Z", "weekly_airing_day": 0, "season_period": 3, "season_year": 1999, "episodes_count": 981, "episode_duration": 24, "cover_image": "https://s4.anilist.co/file/anilistcdn/media/anime/cov...", "cover_color": "#e4a15d", "banner_image": "https://s4.anilist.co/file/anilistcdn/media/anime/ba...", "genres": [ "Action", "Adventure", "Comedy", "Drama", "Fantasy", "Pirates", "Shounen", "Ensemble Cast", "Super Power", "Ships", "Male Protagonist", "Conspiracy", "Tragedy", "Crime", "Time Skip", "Politics", "Boys' Love", "War", "Shapeshifting", "Swordplay", "Lost Civilization", "Guns", "Animals", "Anachronism", "Primarily Adult Cast", "Cyborg", "Skeleton", "Espionage", "Primarily Male Cast", "Gender Bending", "Ninja", "Henshin", "Real Robot", "Anti-Hero", "Mermaid", "Battle Royale", "Assassins", "Tanned Skin", "Zombie", "Time Manipulation", "Kuudere" ], "sagas": [{ "titles": { "en": "East Blue Arc", "fr": "Saga East Blue", "it": "Saga del Mare Orientale", "jp": "1st 東の海編" }, "descriptions": { "en": "Influenced by Shanks, Luffy starts his journey to become the ...", "fr": "Influencé par Shanks, Luffy commence son voyage pour devenir ...", "it": "La prima stagione si intitola Saga del Mare Orientale (EAST B...", "jp": "ルフィは、たった1人の海賊として大海原へと旅立つ。海軍基地の..." }, "episode_from": 1, "episode_to": 61, "episodes_count": 61 }, ... ], "score": 86, "recommendations": [ 2022, 10, 745, 2974, 147, 416 ], "nsfw": true, "has_cover_image": true, "id": 11}
#
Retrieve a specific AnimeRetrieves an Anime show, based on its unique identifier.
#
ParametersNo parameters.
#
ReturnsReturns an Anime object if a valid identifier was provided.
#
Try it
#
Get a list of AnimeReturns a list of Anime objects.
The Anime are returned sorted by score
, with the most popular Anime appearing first.
#
Parametersstring optional#
titleA case-insensitive pattern filter on the list based on the titles
field values.
integer optional#
anilist_idA filter on the list based on the anilist_id
field value.
integer optional#
mal_idA filter on the list based on the mal_id
field value.
integer optional#
tmdb_idA filter on the list based on the tmdb_id
field value.
array of enums optional#
formatsA filter on the list based on the format
field value.
enum optional#
statusA filter on the list based on the status
field value.
integer optional#
yearA filter on the list based on the season_year
field value.
enum optional#
seasonA filter on the list based on the season_period
field value.
array of strings optional#
genresA case-sensitive pattern filter on the list based on the genres
field values.
bool optional#
nsfwA filter on the list which excludes Anime classified as Not Safe For Work.
bool optional#
with_episodesA filter on the list which excludes Anime without episodes available.
#
ReturnsReturns an array of Anime objects with a size based on the filter provided.
#
Try it
#
Retrieve random AnimeRetrieves a random Anime show list.
#
ParametersNo parameters.
#
ReturnsReturns a random Anime list.
#
Try it