ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
TV-SERIES
Keywords
This endpoint gets a list of keywords that have been added to a TV show.
GET
/
3
/
tv
/
{series_id}
/
keywords
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"id": 818,
"name": "based on novel or book"
},
{
"id": 4152,
"name": "kingdom"
},
{
"id": 12554,
"name": "dragon"
},
{
"id": 13084,
"name": "king"
},
{
"id": 34038,
"name": "intrigue"
},
{
"id": 170362,
"name": "fantasy world"
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Keywords Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/keywords \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"id": 818,
"name": "based on novel or book"
},
{
"id": 4152,
"name": "kingdom"
},
{
"id": 12554,
"name": "dragon"
},
{
"id": 13084,
"name": "king"
},
{
"id": 34038,
"name": "intrigue"
},
{
"id": 170362,
"name": "fantasy world"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.