v1
latestOpenAPI 3.1.12026-07-1711423400.3 KBanime
Anime all seasons information.
This endpoint will retrieve the seasons of an Anime item.
get/anime/{animeID}/seasons
Path parameters
animeIDstring required
ID of the anime.
Query parameters
limitstring
The limit on the number of objects, or number of objects in the specified relationship, that are returned. The default value is 25 and the maximum value is 100.
pagestring
The next page or group of objects to fetch. The default value is 1.
Response
Successful GET Seasons JSON response
object required
Example response
{
"data": [
{
"id": 1,
"type": "seasons",
"href": "/v1/seasons/1",
"attributes": {
"animeID": 1,
"number": 1,
"posterURL": "https://via.placeholder.com/640x480.png/006655?text=ratione",
"title": "Season 1",
"synopsis": "This is a short description of the season's story.",
"episodeCount": 2,
"startedAt": "2020-07-29"
}
}
]
}