GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 66034,
  "stills": [
    {
      "aspect_ratio": 1.778,
      "file_path": "/9CGotvBzRPfdBuk46hR8pVIXCZO.jpg",
      "height": 720,
      "iso_639_1": null,
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 1280
    },
    {
      "aspect_ratio": 1.333,
      "file_path": "/tYI3JUFw9676MtdV1C5QeORCeBv.jpg",
      "height": 300,
      "iso_639_1": null,
      "vote_average": 0.166,
      "vote_count": 2,
      "width": 400
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/f73UdpmbjhvwLpB2V4FwiHdsuW7.jpg",
      "height": 450,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 800
    }
  ]
}

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

season_number
integer
required
Example:

2

episode_number
integer
required
Example:

1

Query Parameters

language
string
include_image_language
string

specify a comma separated list of ISO-639-1 values to query, for example- en,null

Response

200 - application/json

Images

The response is of type object.