GET
/
3
/
movie
/
{movie_id}
/
videos
curl --request GET \
  --url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/videos \
  --header 'Authorization: Bearer <token>'
{
  "id": 200,
  "results": [
    {
      "id": "62d0c005f056d500b5ec4754",
      "iso_3166_1": "US",
      "iso_639_1": "en",
      "key": "gm2M8oUrEyg",
      "name": "Star Trek: Insurrection (1998) Original Trailer [FHD]",
      "official": false,
      "published_at": "2021-12-24T20:42:58.000Z",
      "site": "YouTube",
      "size": 1080,
      "type": "Trailer"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

movie_id
string
required

Response

200 - application/json

Videos Example

The response is of type object.