curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/videos \
--header 'Authorization: Bearer <token>'
{
"id": 63060,
"results": [
{
"id": "534926fc0e0a266b470013fb",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "EzM_TQqlY3w",
"name": "Game of Thrones: Season 1 - Episode 5 Clip #1 (HBO)",
"official": true,
"published_at": "2011-05-12T14:53:04.000Z",
"site": "YouTube",
"size": 720,
"type": "Clip"
}
]
}
This endpoint allows you to get the videos that belong to a TV episode.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/videos \
--header 'Authorization: Bearer <token>'
{
"id": 63060,
"results": [
{
"id": "534926fc0e0a266b470013fb",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "EzM_TQqlY3w",
"name": "Game of Thrones: Season 1 - Episode 5 Clip #1 (HBO)",
"official": true,
"published_at": "2011-05-12T14:53:04.000Z",
"site": "YouTube",
"size": 720,
"type": "Clip"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
filter the list results by language, supports more than one value by using a comma
"string"
"string"
Fetch videos
The response is of type object
.