GET
/
3
/
keyword
/
{keyword_id}
curl --request GET \
  --url https://api.themoviedb.org/3/keyword/%7B{keyword_id}%7D \
  --header 'Authorization: Bearer <token>'
{
  "id": 9673,
  "name": "love"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

keyword_id
string
required

This represents the keyword ID. Get it here

Response

200 - application/json

Keyword

The response is of type object.