curl --request GET \
--url 'https://api.themoviedb.org/3/keyword/{{keyword_id}}' \
--header 'Authorization: Bearer <token>'{
"id": 9673,
"name": "love"
}This endpoint allows you to look for a particular keyword by Id.
curl --request GET \
--url 'https://api.themoviedb.org/3/keyword/{{keyword_id}}' \
--header 'Authorization: Bearer <token>'{
"id": 9673,
"name": "love"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.