GET
/
3
/
tv
/
{series_id}
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 93405,
  "results": [
    {
      "id": 3271,
      "name": "secret organization"
    },
    {
      "id": 5399,
      "name": "challenge"
    },
    {
      "id": 10349,
      "name": "survival"
    },
    {
      "id": 12100,
      "name": "fictional game show"
    },
    {
      "id": 14624,
      "name": "cruelty"
    },
    {
      "id": 18249,
      "name": "game"
    },
    {
      "id": 157376,
      "name": "death match"
    },
    {
      "id": 168547,
      "name": "prize"
    },
    {
      "id": 288394,
      "name": "suspense"
    },
    {
      "id": 295702,
      "name": "death game"
    },
    {
      "id": 316362,
      "name": "thriller"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required

This represents the series ID. Get it here

Response

200 - application/json

Keywords

The response is of type object.