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
External IDs
This endpoint gets a list of external IDs that have been added to a TV show.
GET
/
3
/
tv
/
{series_id}
/
external_ids
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
Copy
{
"facebook_id": "GameOfThrones",
"freebase_id": "/en/game_of_thrones",
"freebase_mid": "/m/0524b41",
"id": 1399,
"imdb_id": "tt0944947",
"instagram_id": "gameofthrones",
"tvdb_id": 121361,
"tvrage_id": 24493,
"twitter_id": "GameOfThrones",
"wikidata_id": "Q23572"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200 - application/json
External IDs Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
Copy
{
"facebook_id": "GameOfThrones",
"freebase_id": "/en/game_of_thrones",
"freebase_mid": "/m/0524b41",
"id": 1399,
"imdb_id": "tt0944947",
"instagram_id": "gameofthrones",
"tvdb_id": 121361,
"tvrage_id": 24493,
"twitter_id": "GameOfThrones",
"wikidata_id": "Q23572"
}
Assistant
Responses are generated using AI and may contain mistakes.