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
Episode Groups
This endpoint gets the episode groups that have been added to a TV show.
GET
/
3
/
tv
/
{series_id}
/
episode_groups
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/episode_groups \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"description": "",
"episode_count": 102,
"group_count": 9,
"id": "5e9077d2e640d600151f32bd",
"name": "Aired Order",
"network": {
"id": 49,
"logo_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
"name": "HBO",
"origin_country": "US"
},
"type": 1
}
]
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
Episode Groups Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/episode_groups \
--header 'Authorization: Bearer <token>'
Copy
{
"id": 1399,
"results": [
{
"description": "",
"episode_count": 102,
"group_count": 9,
"id": "5e9077d2e640d600151f32bd",
"name": "Aired Order",
"network": {
"id": 49,
"logo_path": "/tuomPhY2UtuPTqqFnKMVHvSb724.png",
"name": "HBO",
"origin_country": "US"
},
"type": 1
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.