Skip to content

searchRemoteId

GET /v4/search/remoteid/:id

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

Parameters

ParamsTypeRequiredDescription
idstringYesThe remote id

Example

import { TheTVDB } from '@untidy/thetvdb';
const client = new TheTVDB('access token');
const data = await client.searchRemoteId('42444');
Successful response output
{
status: 'success',
data: [
{
movie: {
id: 14915,
name: "Vacanze Di Natale '91",
// ...
},
},
{
series: {
id: 72775,
name: '聖闘士星矢',
// ...
},
},
// ...
],
};