cURL
curl --request GET \ --url https://api.themoviedb.org/3/tv/1399/screened_theatrically \ --header 'Authorization: Bearer <token>'
{ "id": 1399, "results": [ { "episode_number": 10, "id": 63103, "season_number": 4 }, { "episode_number": 9, "id": 63102, "season_number": 4 }, { "episode_number": 9, "id": 1054979, "season_number": 5 }, { "episode_number": 10, "id": 1159054, "season_number": 5 } ] }
Get the seasons and episodes that have screened theatrically.
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