Skip to content

contentRatings

GET /v4/content/ratings

This method returns a list of content ratings 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.contentRatings();
Successful response output
{
status: 'success',
data: [
{
id: 1,
name: 'ATP',
country: 'arg',
description: 'Suitable for all audiences',
contentType: 'episode',
order: 0,
fullname: 'ATP',
},
// ...
],
};