ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
TV-EPISODES
Videos
This endpoint gets the videos that belong to a TV episode.
GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
videos
Copy
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>'
Copy
{
"id": 974430,
"results": [
{
"id": "53492ae60e0a266b38001455",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "PFcwyNDVy4k",
"name": "Game of Thrones: Season 2 - Episode 2 - Clip 2 (HBO)",
"official": true,
"published_at": "2011-04-21T20:19:38.000Z",
"site": "YouTube",
"size": 720,
"type": "Clip"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Videos Example
The response is of type object
.
Copy
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>'
Copy
{
"id": 974430,
"results": [
{
"id": "53492ae60e0a266b38001455",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "PFcwyNDVy4k",
"name": "Game of Thrones: Season 2 - Episode 2 - Clip 2 (HBO)",
"official": true,
"published_at": "2011-04-21T20:19:38.000Z",
"site": "YouTube",
"size": 720,
"type": "Clip"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.