curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{{series_id}}/season/{{season_number}}/episode/{{episode_number}}/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/{{series_id}}/season/{{season_number}}/episode/{{episode_number}}/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
63060
Show child attributes
[
{
"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"
}
]