Skip to content

seasonWithTranslation

GET /v4/seasons/:id/translations/:language

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

Parameters

ParamsTypeRequiredDescription
idstringYesThe season id
languagestringYesThe season language

Example

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