curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
{
"id": 558449,
"keywords": [
{
"id": 6917,
"name": "epic"
},
{
"id": 1394,
"name": "gladiator"
},
{
"id": 1405,
"name": "roman empire"
},
{
"id": 5049,
"name": "ancient rome"
},
{
"id": 9663,
"name": "sequel"
},
{
"id": 307212,
"name": "evil tyrant"
},
{
"id": 317728,
"name": "sword and sandal"
},
{
"id": 320529,
"name": "sword fighting"
},
{
"id": 321763,
"name": "second part"
},
{
"id": 325785,
"name": "commanding"
},
{
"id": 325834,
"name": "mean spirited"
}
]
}
This endpoint allows you to get a list of keyword that have been added to a movie.
curl --request GET \
--url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
{
"id": 558449,
"keywords": [
{
"id": 6917,
"name": "epic"
},
{
"id": 1394,
"name": "gladiator"
},
{
"id": 1405,
"name": "roman empire"
},
{
"id": 5049,
"name": "ancient rome"
},
{
"id": 9663,
"name": "sequel"
},
{
"id": 307212,
"name": "evil tyrant"
},
{
"id": 317728,
"name": "sword and sandal"
},
{
"id": 320529,
"name": "sword fighting"
},
{
"id": 321763,
"name": "second part"
},
{
"id": 325785,
"name": "commanding"
},
{
"id": 325834,
"name": "mean spirited"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch movie keywords
The response is of type object
.