This endpoint retrieves a list of videos that belong to a TV show.
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"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
This represents the language of the video you want to retrieve. It supports more than one value by using a comma.
"french, korea"
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"
}
]
}