Skip to content

peopleByIdExtended

GET /v4/people/:id/extended

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

Parameters

ParamsTypeRequiredDescription
idstringYesThe people 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.peopleByIdExtended('312388');
Successful response output
{
status: 'success',
data: {
id: 312388,
name: 'Chris Pratt',
image: 'https://artworks.thetvdb.com/banners/person/312388/primary.jpg',
score: 0,
nameTranslations: ['eng', 'spa', 'por', 'pt', 'ell', 'pol'],
// ...
},
};

Include translations in the response

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.peopleByIdExtended('312388', true);
Successful response output
{
status: 'success',
data: {
id: 312388,
name: 'Chris Pratt',
image: 'https://artworks.thetvdb.com/banners/person/312388/primary.jpg',
score: 0,
nameTranslations: ['eng', 'spa', 'por', 'pt', 'ell', 'pol'],
// ...
},
};