anime

Anime all seasons information.

This endpoint will retrieve the seasons of an Anime item.

get/anime/{animeID}/seasons

Path parameters

animeIDinteger required

ID of the anime.

Response

Successful GET Anime Seasons JSON response

object required

Example response

{
  "data": [
    {
      "id": 1,
      "type": "seasons",
      "href": "/v1/anime-seasons/1",
      "attributes": {
        "animeID": 1,
        "title": "Season 1",
        "number": 1,
        "episodeCount": 2,
        "firstAired": "2020-07-29 10:00:00"
      }
    }
  ]
}

Changes