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 Series
Videos
This endpoint retrieves a list of videos that belong to a TV show.
GET
/
3
/
tv
/
{series_id}
/
videos
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/videos \
--header 'Authorization: Bearer <token>'
{
"id": 93405,
"results": [
{
"id": "61310236f0647c00426c1680",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "oqxAJKy0ii4",
"name": "Official Trailer [Subtitled]",
"official": true,
"published_at": "2021-09-02T00:00:02.000Z",
"site": "YouTube",
"size": 1080,
"type": "Trailer"
},
{
"id": "6113e3355c5634007d4dbfec",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "5oFn2eodVD0",
"name": "Official Teaser #1 [ENG SUB]",
"official": true,
"published_at": "2021-08-11T06:36:46.000Z",
"site": "YouTube",
"size": 1080,
"type": "Teaser"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
This represents the language of the video you want to retrieve. It supports more than one value by using a comma.
Example:
"french, korea"
Response
200 - application/json
Videos
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/videos \
--header 'Authorization: Bearer <token>'
{
"id": 93405,
"results": [
{
"id": "61310236f0647c00426c1680",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "oqxAJKy0ii4",
"name": "Official Trailer [Subtitled]",
"official": true,
"published_at": "2021-09-02T00:00:02.000Z",
"site": "YouTube",
"size": 1080,
"type": "Trailer"
},
{
"id": "6113e3355c5634007d4dbfec",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "5oFn2eodVD0",
"name": "Official Teaser #1 [ENG SUB]",
"official": true,
"published_at": "2021-08-11T06:36:46.000Z",
"site": "YouTube",
"size": 1080,
"type": "Teaser"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.