GET
/
3
/
tv
/
{series_id}
/
keywords
Keywords
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/keywords \
  --header 'Authorization: Bearer <token>'
{
  "id": 1433,
  "results": [
    {
      "id": 591,
      "name": "central intelligence agency (cia)"
    },
    {
      "id": 11514,
      "name": "social satire"
    },
    {
      "id": 161919,
      "name": "adult animation"
    },
    {
      "id": 301096,
      "name": "direct"
    },
    {
      "id": 309974,
      "name": "absurd"
    },
    {
      "id": 319397,
      "name": "witty"
    },
    {
      "id": 321874,
      "name": "domestic comedy"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
integer
required

a uniques identifier for a tv serie

Response

200 - application/json

Keywords

id
number
Example:

1433

results
object[]
Example:
[
{
"id": 591,
"name": "central intelligence agency (cia)"
},
{ "id": 11514, "name": "social satire" },
{ "id": 161919, "name": "adult animation" },
{ "id": 301096, "name": "direct" },
{ "id": 309974, "name": "absurd" },
{ "id": 319397, "name": "witty" },
{ "id": 321874, "name": "domestic comedy" }
]