Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
TV Providers
Images
This endpoint retrieves a list of images that belong to a TV show.
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": 5475279,
"stills": [
{
"aspect_ratio": 1.778,
"file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
"height": 1080,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
This represents the season number of the TV show.
This represents the episode number of the TV show.
Response
200 - application/json
Images
The response is of type object
.
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": 5475279,
"stills": [
{
"aspect_ratio": 1.778,
"file_path": "/fmo7pOmLThRpUEKuMXnnpy6g6DU.jpg",
"height": 1080,
"iso_639_1": "zh",
"vote_average": 3.334,
"vote_count": 1,
"width": 1920
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.