GET
/
3
/
tv
/
1399
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/tv/1399/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 1399,
  "results": [
    {
      "id": 818,
      "name": "based on novel or book"
    },
    {
      "id": 4152,
      "name": "kingdom"
    },
    {
      "id": 12554,
      "name": "dragon"
    },
    {
      "id": 13084,
      "name": "king"
    },
    {
      "id": 34038,
      "name": "intrigue"
    },
    {
      "id": 170362,
      "name": "fantasy world"
    }
  ]
}

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.