Skip to main content
GET
/
tv
/
{series_id}
/
images
Images
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/images \
  --header 'Authorization: Bearer <token>'
{
  "backdrops": [
    {
      "aspect_ratio": 1.778,
      "height": 720,
      "iso_639_1": null,
      "file_path": "/jeP3It0ZPY3SKW3632qwLkkIZv3.jpg",
      "vote_average": 0,
      "vote_count": 0,
      "width": 1280
    }
  ],
  "id": 550,
  "logos": [],
  "posters": [
    {
      "aspect_ratio": 0.658,
      "height": 1152,
      "iso_639_1": "en",
      "file_path": "/5r8enLaWs3SnVoInZYsOLZgboki.jpg",
      "vote_average": 3.334,
      "vote_count": 1,
      "width": 758
    },
    {
      "aspect_ratio": 0.705,
      "height": 1073,
      "iso_639_1": "en",
      "file_path": "/1IsbecDzH4aoAv5Mqp6dM4JSnY0.jpg",
      "vote_average": 0.166,
      "vote_count": 1,
      "width": 757
    }
  ]
}

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

The series ID for tv.

Query Parameters

include_image_language
string

specify a comma separated list of ISO-639-1 values

language
string

Defaults to US

Response

200 - application/json

Successful

id
integer

The unique identifier for the TV series images collection.

backdrop
object[]

A list of background images related to the TV series.

A list of logo images associated with the media.

posters
object[]

A list of poster images for the TV series.