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"
}
]
}
This endpoint allows you to get 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": 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"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch TV keywords
The response is of type object
.