GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
episode
/
{episode_number}
/
external_ids
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/episode/{episode_number}/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "freebase_id": null,
  "freebase_mid": "/m/03mb620",
  "id": 62085,
  "imdb_id": "tt0959621",
  "tvdb_id": 349232,
  "tvrage_id": 637041,
  "wikidata_id": "Q14625947"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

season_number
integer
required

This refers to the numerical identifier assigned to a specific season of a TV series.

Example:

""

series_id
integer
required

This refers to a unique identifier assigned to a television series within the database.

Example:

""

episode_number
integer
required

This refers to the unique number assigned to a specific episode within a season of a television series.

Example:

""

Response

200 - application/json

external ids

The response is of type object.