GET
/
tv
/
{series_id}
/
keywords
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 204370,
  "results": [
    {
      "id": 10235,
      "name": "family relationships"
    },
    {
      "id": 11615,
      "name": "internet"
    },
    {
      "id": 12279,
      "name": "family drama"
    },
    {
      "id": 247099,
      "name": "asexuality"
    },
    {
      "id": 288394,
      "name": "suspense"
    },
    {
      "id": 321067,
      "name": "novela das 9"
    }
  ]
}

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

Response

200 - application/json

Fetch TV keywords

The response is of type object.