curl --request GET \
--url https://api.themoviedb.org/3/search/keyword \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 239553,
"name": "fight club"
}
],
"total_pages": 1,
"total_results": 1
}
This endpoint searches for keywords by their name.
curl --request GET \
--url https://api.themoviedb.org/3/search/keyword \
--header 'Authorization: Bearer <token>'
{
"page": 1,
"results": [
{
"id": 239553,
"name": "fight club"
}
],
"total_pages": 1,
"total_results": 1
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Keyword Example
The response is of type object
.