cURL
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
"Fight%20Club"
"1"
Keyword Example
1
Show child attributes
239553
"fight club"
[{ "id": 239553, "name": "fight club" }]