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
MOVIES
Videos
This endpoint fetches video clips of a movie.
GET
/
3
/
movie
/
{movie_id}
/
videos
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/videos \
--header 'Authorization: Bearer <token>'
Copy
{
"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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Videos Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/videos \
--header 'Authorization: Bearer <token>'
Copy
{
"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"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.