curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{{series_id}}/external_ids' \
--header 'Authorization: Bearer <token>'{
"facebook_id": null,
"freebase_id": null,
"freebase_mid": null,
"id": 203504,
"imdb_id": "tt20673854",
"instagram_id": null,
"tvdb_id": 421907,
"tvrage_id": null,
"twitter_id": null,
"wikidata_id": null
}This endpoint allows you to get a list of external IDs that have been added to a TV show.
curl --request GET \
--url 'https://api.themoviedb.org/3/tv/{{series_id}}/external_ids' \
--header 'Authorization: Bearer <token>'{
"facebook_id": null,
"freebase_id": null,
"freebase_mid": null,
"id": 203504,
"imdb_id": "tt20673854",
"instagram_id": null,
"tvdb_id": 421907,
"tvrage_id": null,
"twitter_id": null,
"wikidata_id": null
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.