Skip to content

serieWithTranslation

GET /v4/series/:id/translations/:language

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

Parameters

ParamsTypeRequiredDescription
idstringYesThe serie id
languagestringYesThe serie language

Example

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.serieWithTranslation('78878', 'eng');
Successful response output
{
status: 'success',
data: {
name: 'FLCL',
overview:
"Naota's life is confined to going to school and living with his father and grandfather. The usually tranquil life in Mabase is rudely interrupted by the arrival of Haruhara Haruko, who bursts on the scene by running Naota over with her Vespa scooter and hitting him on the head with a Rickenbacker 4003 bass guitar. Later, Naota is shocked to find Haruko working in his house as a live-in maid. Haruko's search for the alien being Atomsk puts her at odds with Medical Mechanica. At the same time, Naota is being watched by Commander Amarao. The Commander believes Haruko is in love with Atomsk and Medical Mechanica is out to conquer the galaxy. The fortuitous circumstances get Naota involved in a three-way battle between Haruko, Amarao and Medical Mechanica.",
language: 'eng',
aliases: ['Fooly Cooly', 'FLCL: Progressive', 'FLCL: Alternative', 'FLCL: Grunge', 'FLCL: Shoegaze'],
},
};