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": 200,
  "keywords": [
    {
      "id": 1612,
      "name": "spacecraft"
    },
    {
      "id": 3822,
      "name": "teleportation"
    },
    {
      "id": 1472,
      "name": "starship"
    },
    {
      "id": 399,
      "name": "fountain of youth"
    },
    {
      "id": 3469,
      "name": "utopia"
    },
    {
      "id": 5726,
      "name": "insurrection"
    },
    {
      "id": 9951,
      "name": "alien"
    },
    {
      "id": 161176,
      "name": "space opera"
    },
    {
      "id": 162388,
      "name": "retribution"
    },
    {
      "id": 162392,
      "name": "spacecraft officer"
    },
    {
      "id": 162399,
      "name": "exploding ship"
    },
    {
      "id": 204390,
      "name": "cosmos"
    },
    {
      "id": 241954,
      "name": "technophobia"
    },
    {
      "id": 244653,
      "name": "synthetic android"
    },
    {
      "id": 252634,
      "name": "outer space"
    }
  ]
}

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

Keywords Example

The response is of type object.