This endpoint retrieves a list of keywords that have been added to a TV show.
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"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Keywords
The response is of type object
.
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"
}
]
}