GET
/
3
/
movie
/
{movie_id}
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 845781,
  "keywords": [
    {
      "id": 801,
      "name": "bounty hunter"
    },
    {
      "id": 65,
      "name": "holiday"
    },
    {
      "id": 1930,
      "name": "kidnapping"
    },
    {
      "id": 1991,
      "name": "santa claus"
    },
    {
      "id": 6678,
      "name": "polar bear"
    },
    {
      "id": 207317,
      "name": "christmas"
    },
    {
      "id": 247799,
      "name": "action comedy"
    },
    {
      "id": 298618,
      "name": "family comedy"
    },
    {
      "id": 324005,
      "name": "fantasy comedy"
    },
    {
      "id": 325761,
      "name": "admiring"
    },
    {
      "id": 325781,
      "name": "celebratory"
    },
    {
      "id": 325811,
      "name": "excited"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

movie_id
string
required

This represents the movie ID. Get it here

Response

200 - application/json

Keywords

The response is of type object.