Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
TV Series
External IDS
This endpoint retrieves a list of external Ids that have been added to a TV show.
The supported external sources include Facebook, IMDB, Instagram, TheTVDB, Twitter, Wikidata.
GET
/
3
/
tv
/
{series_id}
/
external_ids
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
{
"facebook_id": "squidgamenetflix",
"freebase_id": null,
"freebase_mid": null,
"id": 93405,
"imdb_id": "tt10919420",
"instagram_id": "squidgamenetflix",
"tvdb_id": 383275,
"tvrage_id": null,
"twitter_id": "squidgame",
"wikidata_id": "Q106582931"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
This represents the series ID.
Response
200 - application/json
External IDS
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/tv/%7B{series_id}%7D/external_ids \
--header 'Authorization: Bearer <token>'
{
"facebook_id": "squidgamenetflix",
"freebase_id": null,
"freebase_mid": null,
"id": 93405,
"imdb_id": "tt10919420",
"instagram_id": "squidgamenetflix",
"tvdb_id": 383275,
"tvrage_id": null,
"twitter_id": "squidgame",
"wikidata_id": "Q106582931"
}
Assistant
Responses are generated using AI and may contain mistakes.