GET
/
3
/
tv
/
{series_id}
/
episode_groups
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/episode_groups \
  --header 'Authorization: Bearer <token>'
{
  "id": 1433,
  "results": [
    {
      "description": "All episodes in the TVMaze order. See the full list here: https://www.tvmaze.com/shows/215/american-dad/episodes",
      "episode_count": 366,
      "group_count": 20,
      "id": "6046e9d3c8a5ac006ffcf1fa",
      "name": "TVMaze Order",
      "network": null,
      "type": 1
    },
    {
      "description": "A list of the TVDB order can be found here: https://thetvdb.com/series/american-dad/allseasons/official",
      "episode_count": 344,
      "group_count": 19,
      "id": "6268161a7cffda006544e4cf",
      "name": "TVDB Order",
      "network": null,
      "type": 1
    },
    {
      "description": "All episodes in wikipedia order. The full list can be found here: https://en.wikipedia.org/wiki/List_of_American_Dad!_episodes",
      "episode_count": 344,
      "group_count": 19,
      "id": "6267bcbe4ccc50009cb1ba89",
      "name": "Wikipedia Order",
      "network": null,
      "type": 1
    },
    {
      "description": "The full list of episodes for the Wikia order can be viewed here: https://americandad.fandom.com/wiki/Episode_Guide_List",
      "episode_count": 344,
      "group_count": 17,
      "id": "6267bf9b4ccc50009cb1bf72",
      "name": "Wikia Order",
      "network": null,
      "type": 1
    },
    {
      "description": "",
      "episode_count": 366,
      "group_count": 1,
      "id": "63633c21a6a4c10082dab28b",
      "name": "absolute order",
      "network": null,
      "type": 2
    },
    {
      "description": "",
      "episode_count": 256,
      "group_count": 14,
      "id": "5ad23bc2c3a3683ef50133b0",
      "name": "DVD Order",
      "network": null,
      "type": 3
    },
    {
      "description": "",
      "episode_count": 234,
      "group_count": 13,
      "id": "651863caea84c7012d672f2c",
      "name": "United Kingdom DVD Order",
      "network": null,
      "type": 3
    },
    {
      "description": "",
      "episode_count": 368,
      "group_count": 19,
      "id": "5ad240319251417367012053",
      "name": "TBS Digital Order",
      "network": {
        "id": 68,
        "logo_path": "/65r0kR6MfOBYF0gEQsJGM6v5fEG.png",
        "name": "TBS",
        "origin_country": "US"
      },
      "type": 4
    },
    {
      "description": "Episode order on Disney+.",
      "episode_count": 373,
      "group_count": 20,
      "id": "628409a2dcf875334e500e8c",
      "name": "Disney Plus",
      "network": {
        "id": 2739,
        "logo_path": "/1edZOYAfoyZyZ3rklNSiUpXX30Q.png",
        "name": "Disney+",
        "origin_country": ""
      },
      "type": 4
    },
    {
      "description": "",
      "episode_count": 366,
      "group_count": 18,
      "id": "5ad22ef3c3a3683eef010c3d",
      "name": "Production Order",
      "network": null,
      "type": 6
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

series_id
integer
required

a uniques identifier for a tv serie

Response

200 - application/json

Episode Groups

The response is of type object.