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
Keywords
This endpoint fetches IDs and Keywords of Movies.
GET
/
3
/
movie
/
{movie_id}
/
keywords
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 200,
"keywords": [
{
"id": 1612,
"name": "spacecraft"
},
{
"id": 3822,
"name": "teleportation"
},
{
"id": 1472,
"name": "starship"
},
{
"id": 399,
"name": "fountain of youth"
},
{
"id": 3469,
"name": "utopia"
},
{
"id": 5726,
"name": "insurrection"
},
{
"id": 9951,
"name": "alien"
},
{
"id": 161176,
"name": "space opera"
},
{
"id": 162388,
"name": "retribution"
},
{
"id": 162392,
"name": "spacecraft officer"
},
{
"id": 162399,
"name": "exploding ship"
},
{
"id": 204390,
"name": "cosmos"
},
{
"id": 241954,
"name": "technophobia"
},
{
"id": 244653,
"name": "synthetic android"
},
{
"id": 252634,
"name": "outer space"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Keywords Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 200,
"keywords": [
{
"id": 1612,
"name": "spacecraft"
},
{
"id": 3822,
"name": "teleportation"
},
{
"id": 1472,
"name": "starship"
},
{
"id": 399,
"name": "fountain of youth"
},
{
"id": 3469,
"name": "utopia"
},
{
"id": 5726,
"name": "insurrection"
},
{
"id": 9951,
"name": "alien"
},
{
"id": 161176,
"name": "space opera"
},
{
"id": 162388,
"name": "retribution"
},
{
"id": 162392,
"name": "spacecraft officer"
},
{
"id": 162399,
"name": "exploding ship"
},
{
"id": 204390,
"name": "cosmos"
},
{
"id": 241954,
"name": "technophobia"
},
{
"id": 244653,
"name": "synthetic android"
},
{
"id": 252634,
"name": "outer space"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.