Skip to content

seasonByIdExtended

GET /v4/seasons/:id/extended

This method returns a single extended season record. For official documentation of the endpoint, please refer to the Swagger documentation.

Parameters

ParamsTypeRequiredDescription
idstringYesThe season id
translationbooleanOptionalInclude translation information in the response

Examples

Without translations

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.seasonByIdExtended('6365');
Successful response output
{
status: 'success',
data: {
id: 6365,
seriesId: 73752,
artwork: [
{
id: 61184110,
image: 'https://artworks.thetvdb.com/banners/seasons/24394-1.jpg',
thumbnail: 'https://artworks.thetvdb.com/banners/seasons/24394-1_t.jpg',
language: 'eng',
// ...
},
// ...
],
// ...
},
};

Include translations in the response

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.seasonByIdExtended('6365', true);
Successful response output
{
status: 'success',
data: {
id: 6365,
seriesId: 73752,
translations: {
nameTranslations: null,
overviewTranslations: [
{
overview:
'Через предательство и кровь к власти пришел новый король. Его демоны-подручные чинят несправедливости до тех пор, пока в город однажды ночью не приходит тяжело вооруженный воин. Весь покрытый оружием, броней и шрамами он называет себя Чёрным Мечником. Размеры его меча могут сравниться только с его ненавистью к королю и его демонам.',
language: 'rus',
},
],
aliases: null,
},
},
};