GET
/
3
/
tv
/
1399
/
screened_theatrically
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
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

New Request

The response is of type object.