GET
/
3
/
keyword
/
{keyword_id}
Details
curl --request GET \
  --url https://api.themoviedb.org/3/keyword/{keyword_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": 14696,
  "name": "bloody fight"
}

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 is the unique identifier for each keyword.

Example:

""

Response

200 - application/json

details

id
number

A unique identifier for the keyword.

Example:

14696

name
string

The name of the keyword, which describes a specific theme or element associated with a movie or TV show.

Example:

"bloody fight"