Endpoints
- Account
- Authentication
- Certification
- Changes
- Collections
- Companies
- Configuration
- Credits
- Discover
- Find
- Genres
- Guest Session
- Keywords
- List
- Movie Lists
- Movies
- Networks
- People Lists
- People
- Reviews
- Search
- Trending
- TV Series Lists
- 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
- GETWatch Providers
- POSTAdd Rating
- DELDelete Rating
- GET
- TV Seasons
- TV Episodes
- TV Episode Groups
- Watch Providers
- API Reference
TV Series
Videos
Get the 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
{
"id": 70785,
"results": [
{
"id": "5b1a9316c3a36848fb012c38",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "S5qJXYNNINo",
"name": "loose adaptation",
"official": true,
"published_at": "2017-04-04T16:00:02.000Z",
"site": "YouTube",
"size": 360,
"type": "Trailer"
}
]
}
Path Parameters
Query Parameters
Example:
"en-US"
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
{
"id": 70785,
"results": [
{
"id": "5b1a9316c3a36848fb012c38",
"iso_3166_1": "US",
"iso_639_1": "en",
"key": "S5qJXYNNINo",
"name": "loose adaptation",
"official": true,
"published_at": "2017-04-04T16:00:02.000Z",
"site": "YouTube",
"size": 360,
"type": "Trailer"
}
]
}