GET
/
3
/
movie
/
18
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/movie/18/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 18,
  "keywords": [
    {
      "id": 242,
      "name": "new york city"
    },
    {
      "id": 391,
      "name": "flying car"
    },
    {
      "id": 444,
      "name": "taxi"
    },
    {
      "id": 1160,
      "name": "egypt"
    },
    {
      "id": 4776,
      "name": "race against time"
    },
    {
      "id": 83,
      "name": "saving the world"
    },
    {
      "id": 679,
      "name": "cyborg"
    },
    {
      "id": 4565,
      "name": "dystopia"
    },
    {
      "id": 2095,
      "name": "anti hero"
    },
    {
      "id": 3622,
      "name": "stowaway"
    },
    {
      "id": 3801,
      "name": "space travel"
    },
    {
      "id": 4238,
      "name": "chosen one"
    },
    {
      "id": 6163,
      "name": "arms dealer"
    },
    {
      "id": 4862,
      "name": "alien life-form"
    },
    {
      "id": 10150,
      "name": "end of the world"
    },
    {
      "id": 10093,
      "name": "priest"
    },
    {
      "id": 10950,
      "name": "shootout"
    },
    {
      "id": 11148,
      "name": "police chase"
    },
    {
      "id": 11290,
      "name": "cab driver"
    },
    {
      "id": 12190,
      "name": "cyberpunk"
    },
    {
      "id": 41586,
      "name": "archaeologist"
    },
    {
      "id": 161176,
      "name": "space opera"
    },
    {
      "id": 162365,
      "name": "military"
    },
    {
      "id": 164920,
      "name": "opera singer"
    },
    {
      "id": 214715,
      "name": "futuristic city"
    },
    {
      "id": 229863,
      "name": "ancient evil"
    },
    {
      "id": 234630,
      "name": "cruise liner"
    },
    {
      "id": 248516,
      "name": "hieroglyphics"
    },
    {
      "id": 252937,
      "name": "spaceship"
    },
    {
      "id": 269233,
      "name": "good versus evil"
    },
    {
      "id": 298517,
      "name": "science fantasy"
    },
    {
      "id": 325765,
      "name": "amused"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

New Request

The response is of type object.