Season Episodes

Season EpisodesCopied!

Description: Shows episode listings and information for TV shows or series.

API Response Structure:

{
  "items": [
    {
      "season": "Season 1",
      "episodes": [
        {
          "title": "Episode Title",
          "lengthAndReleaseDate": "45 min • Released Jan 1, 2023",
          "description": "Episode description",
          "watchAt": [
            {
              "service": "Streaming Service",
              "link": {
                "url": "https://stream.example.com/watch",
                "visibleText": "Watch Now"
              }
            }
          ],
          "ratings": {
            "score": 4.8,
            "votes": 1500
          },
          "cast": ["Actor 1", "Actor 2"]
        }
      ]
    }
  ],
  "type": "seasonEpisodes"
}

Fields:

  • items (array): Season information

    • season (string): Season number/name

    • episodes (array): Episode listings

      • title (string): Episode title

      • lengthAndReleaseDate (string): Duration and air date

      • description (string): Episode summary

      • watchAt (array): Streaming options

      • ratings (object): Episode ratings

      • cast (array): Featured actors

  • type (string): Always "seasonEpisodes"