Skip to content

serieStatuses

GET /v4/series/statuses

This method returns a list of serie status records. For official documentation of the endpoint, please refer to the Swagger documentation.

Parameters

This method does not require any parameters.

Example

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.serieStatuses();
Successful response output
{
status: 'success',
data: [
{
id: 1,
name: 'Continuing',
recordType: 'series',
keepUpdated: false,
},
{
id: 2,
name: 'Ended',
recordType: 'series',
keepUpdated: false,
},
{
id: 3,
name: 'Upcoming',
recordType: 'series',
keepUpdated: false,
},
],
};