GET
/
3
/
tv
/
{series_id}
/
season
/
{season_number}
/
external_ids
External IDs
curl --request GET \
  --url https://api.themoviedb.org/3/tv/{series_id}/season/{season_number}/external_ids \
  --header 'Authorization: Bearer <token>'
{
  "freebase_id": "/en/breaking_bad_season_1",
  "freebase_mid": "/m/05yy27m",
  "id": 3572,
  "tvdb_id": 30272,
  "tvrage_id": null,
  "wikidata_id": "Q1582890"
}

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:

""

Response

200 - application/json

external ids

freebase_id
string
Example:

"/en/breaking_bad_season_1"

freebase_mid
string
Example:

"/m/05yy27m"

id
number
Example:

3572

tvdb_id
number
Example:

30272

tvrage_id
any
wikidata_id
string
Example:

"Q1582890"