cURL
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 } ] }
This endpoint is used to get the images that belong to a TV series
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The series ID for tv.
specify a comma separated list of ISO-639-1 values
Defaults to US
Successful
The unique identifier for the TV series images collection.
A list of background images related to the TV series.
Show child attributes
A list of logo images associated with the media.
A list of poster images for the TV series.