Skip to main content
GET
/
3
/
keyword
/
{keyword_id}
Keyword by Id
curl --request GET \
  --url 'https://api.themoviedb.org/3/keyword/{{keyword_id}}' \
  --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

id
number
Example:

9673

name
string
Example:

"love"