cURL
curl --request GET \ --url https://api.themoviedb.org/3/tv/1399/keywords \ --header 'Authorization: Bearer <token>'
{ "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" } ] }
Get a list of keywords that have been added to a TV show.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
New Request
The response is of type object.
object