Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
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
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Movies
Keywords
This endpoint retrieves the list of keywords associated with a movie.
GET
/
3
/
movie
/
{movie_id}
/
keywords
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
{
"id": 845781,
"keywords": [
{
"id": 801,
"name": "bounty hunter"
},
{
"id": 65,
"name": "holiday"
},
{
"id": 1930,
"name": "kidnapping"
},
{
"id": 1991,
"name": "santa claus"
},
{
"id": 6678,
"name": "polar bear"
},
{
"id": 207317,
"name": "christmas"
},
{
"id": 247799,
"name": "action comedy"
},
{
"id": 298618,
"name": "family comedy"
},
{
"id": 324005,
"name": "fantasy comedy"
},
{
"id": 325761,
"name": "admiring"
},
{
"id": 325781,
"name": "celebratory"
},
{
"id": 325811,
"name": "excited"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Keywords
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
{
"id": 845781,
"keywords": [
{
"id": 801,
"name": "bounty hunter"
},
{
"id": 65,
"name": "holiday"
},
{
"id": 1930,
"name": "kidnapping"
},
{
"id": 1991,
"name": "santa claus"
},
{
"id": 6678,
"name": "polar bear"
},
{
"id": 207317,
"name": "christmas"
},
{
"id": 247799,
"name": "action comedy"
},
{
"id": 298618,
"name": "family comedy"
},
{
"id": 324005,
"name": "fantasy comedy"
},
{
"id": 325761,
"name": "admiring"
},
{
"id": 325781,
"name": "celebratory"
},
{
"id": 325811,
"name": "excited"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.