Catalog/screen-show-seasons

Data

TV show seasons (TVmaze) API

Season-by-season breakdown for a TVmaze show id: season number, episode order, premiere/end dates, network and summary, with total episode count (TVmaze). Answers 'how many seasons does show 169 have', 'seasons of Breaking Bad', 'when did season 2 premiere'.

Price$0.01per request
MethodPOST
Route/v1/data/screen-show-seasons
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
datatvseasonstvmazeepisodestelevisionmediascreen
API URLhttps://x402.hexl.dev/v1/data/screen-show-seasons
Integration docs
Example request
{
  "showId": 169
}
Example response
{
  "showId": 169,
  "seasonCount": 5,
  "totalEpisodes": 62,
  "seasons": [
    {
      "id": 1,
      "number": 1,
      "name": null,
      "episodeOrder": 7,
      "premiereDate": "2008-01-20",
      "endDate": "2008-03-09",
      "network": "AMC",
      "image": "https://static.tvmaze.com/uploads/images/original_untouched/0/1.jpg",
      "summary": null
    }
  ]
}
Input schema
{
  "type": "object",
  "required": [
    "showId"
  ],
  "properties": {
    "showId": {
      "type": "number",
      "examples": [
        169
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}