curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/videos \
--header 'Authorization: Bearer <token>'{
"id": 500,
"results": [
{
"iso_639_1": "en",
"iso_3166_1": "US",
"name": "Fight Club (1999) Trailer - Starring Brad Pitt, Edward Norton, Helena Bonham Carter",
"key": "O-b2VfmmbyA",
"site": "YouTube",
"size": 720,
"type": "Trailer",
"official": false,
"published_at": "2016-03-05T02:03:14.000Z",
"id": "639d5326be6d88007f170f44"
},
{
"iso_639_1": "en",
"iso_3166_1": "US",
"name": "#TBT Trailer",
"key": "BdJKm16Co6M",
"site": "YouTube",
"size": 1080,
"type": "Trailer",
"official": true,
"published_at": "2014-10-02T19:20:22.000Z",
"id": "5c9294240e0a267cd516835f"
}
]
}This endpoint is used to get the video for a movie.
curl --request GET \
--url https://api.themoviedb.org/3/movie/{movie_id}/videos \
--header 'Authorization: Bearer <token>'{
"id": 500,
"results": [
{
"iso_639_1": "en",
"iso_3166_1": "US",
"name": "Fight Club (1999) Trailer - Starring Brad Pitt, Edward Norton, Helena Bonham Carter",
"key": "O-b2VfmmbyA",
"site": "YouTube",
"size": 720,
"type": "Trailer",
"official": false,
"published_at": "2016-03-05T02:03:14.000Z",
"id": "639d5326be6d88007f170f44"
},
{
"iso_639_1": "en",
"iso_3166_1": "US",
"name": "#TBT Trailer",
"key": "BdJKm16Co6M",
"site": "YouTube",
"size": 1080,
"type": "Trailer",
"official": true,
"published_at": "2014-10-02T19:20:22.000Z",
"id": "5c9294240e0a267cd516835f"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the movie
Defaults to false