GET
/
movie
/
{movie_id}
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/movie/%7B{movie_id}%7D/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 558449,
  "keywords": [
    {
      "id": 6917,
      "name": "epic"
    },
    {
      "id": 1394,
      "name": "gladiator"
    },
    {
      "id": 1405,
      "name": "roman empire"
    },
    {
      "id": 5049,
      "name": "ancient rome"
    },
    {
      "id": 9663,
      "name": "sequel"
    },
    {
      "id": 307212,
      "name": "evil tyrant"
    },
    {
      "id": 317728,
      "name": "sword and sandal"
    },
    {
      "id": 320529,
      "name": "sword fighting"
    },
    {
      "id": 321763,
      "name": "second part"
    },
    {
      "id": 325785,
      "name": "commanding"
    },
    {
      "id": 325834,
      "name": "mean spirited"
    }
  ]
}

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

Response

200 - application/json

Fetch movie keywords

The response is of type object.