External IDs
Get external platform identifiers for a TV season.
Get a list of external IDs that have been added to a TV season.
async external_ids(params: TVSeasonBaseParams): Promise<TVSeasonExternalIDs>TMDB Reference: TV Season External IDs
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
series_id | number | ✅ | TMDB TV series identifier. |
season_number | number | ✅ | Season number within the TV series. |
Returns
Example
const ids = await tmdb.tv_seasons.external_ids({
series_id: 1396,
season_number: 1,
});
console.log(ids.tvdb_id);
console.log(ids.wikidata_id);