GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
external_ids
curl --request GET \
  --url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/season/%7B{season_number}%7D/episode/%7B{episode_number}%7D/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "freebase_id": null,
  "freebase_mid": null,
  "id": 5475279,
  "imdb_id": "tt15939754",
  "tvdb_id": 10617348,
  "tvrage_id": null,
  "wikidata_id": "Q131563891"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

series_id
string
required

This represents the series ID. Get it here

season_number
string
required

This represents the season number of the TV show.

episode_number
string
required

This represents the episode number of the TV show.

Response

200 - application/json

External Ids

The response is of type object.