curl --request GET \
--url https://api.themoviedb.org/3/keyword/{keyword_id} \
--header 'Authorization: Bearer <token>'{
"id": 1701,
"name": "hero"
}This endpoint get the details of the keywords
curl --request GET \
--url https://api.themoviedb.org/3/keyword/{keyword_id} \
--header 'Authorization: Bearer <token>'{
"id": 1701,
"name": "hero"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The ID of the keyword to retrieve.