GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
images
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/images \
  --header 'Authorization: Bearer <token>'
{
  "id": 63057,
  "stills": [
    {
      "aspect_ratio": 1.777,
      "file_path": "/xxGd4OqBQLav65zdlshNyxB4oLL.jpg",
      "height": 995,
      "iso_639_1": "en",
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 1768
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/l0GJx3IR8YasbztTJi5uK0XqkEo.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 2.542,
      "vote_count": 4,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/1kdHRLs05ia0E9X3Hi5Ts5Sc1jk.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 1.75,
      "vote_count": 2,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/icjOgl5F9DhysOEo6Six2Qfwcu2.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 1.222,
      "vote_count": 3,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/hBcErC6KDly9mZ2TYWUSwdcb0hH.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 1.222,
      "vote_count": 3,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/4xGRwaINyXxggcl0dO8IXGlX4Yq.jpg",
      "height": 2160,
      "iso_639_1": null,
      "vote_average": 0.166,
      "vote_count": 1,
      "width": 3840
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/4mjUsO5RiHoYbSjmjUzpgPSLwLS.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/rZCW3L4d22iA1DOkDb5fqRgpnpH.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/fb4RyKsX1Zjj310Wq6Z888UIQqi.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/1ThrlkkkBccfQrIgBcQp1tQh6m5.jpg",
      "height": 1080,
      "iso_639_1": null,
      "vote_average": 0,
      "vote_count": 0,
      "width": 1920
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/2iSzWMwGSCLzNkoa28gSbYOENys.jpg",
      "height": 2160,
      "iso_639_1": "en",
      "vote_average": 0,
      "vote_count": 0,
      "width": 3840
    },
    {
      "aspect_ratio": 1.778,
      "file_path": "/16Bu0ySNa4DF6gdU8V7jnXjUYtK.jpg",
      "height": 2160,
      "iso_639_1": "ne",
      "vote_average": 0,
      "vote_count": 0,
      "width": 3840
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required
season_number
string
required
episode_number
string
required

Response

200 - application/json

Images Example

The response is of type object.