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
Screened Theatrically
This endpoint gets the seasons and episodes that have screened theatrically.
GET
/
3
/
tv
/
{series_id}
/
screened_theatrically
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/screened_theatrically \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"episode_number": 9,
"id": 63102,
"season_number": 4
},
{
"episode_number": 10,
"id": 63103,
"season_number": 4
},
{
"episode_number": 9,
"id": 1054979,
"season_number": 5
},
{
"episode_number": 10,
"id": 1159054,
"season_number": 5
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Screened Theatrically Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/screened_theatrically \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"episode_number": 9,
"id": 63102,
"season_number": 4
},
{
"episode_number": 10,
"id": 63103,
"season_number": 4
},
{
"episode_number": 9,
"id": 1054979,
"season_number": 5
},
{
"episode_number": 10,
"id": 1159054,
"season_number": 5
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.