anime-seasons

Retrieve season episodes.

This endpoint will retrieve the episodes in a certain season.

get/anime-seasons/{seasonID}/episodes

Path parameters

seasonIDinteger required

ID of the season.

Response

Successful GET Anime Seasons Episodes JSON response

object required

Example response

{
  "data": [
    {
      "id": 1,
      "type": "episodes",
      "href": "/v1/anime-seasons/1/episodes",
      "attributes": {
        "number": 1,
        "title": "Episode 1",
        "firstAired": "29 Jul, 2020",
        "overview": "A short, or long description of the episode.",
        "isVerified": false,
        "isWatched": true
      }
    },
    {
      "id": 2,
      "type": "episodes",
      "href": "/v1/anime-seasons/2/episodes",
      "attributes": {
        "number": 2,
        "title": "Episode 2",
        "firstAired": "5 Aug, 2020",
        "overview": "A long, or short description of the episode.",
        "isVerified": false,
        "isWatched": false
      }
    }
  ]
}

Changes