Skip to main content
client.gamma.series.getSeriesById fetches a specific series, including nested events, chat details, and tags.

Request

const [series] = await client.gamma.series.getSeriesById(id, params);

Parameters

NameTypeRequiredNotes
idnumber (≥ 0)Series ID.
include_chatbooleanInclude chat metadata.

Response

An array containing one Series object (consistent with the upstream API). Fields match the structure returned by List Series.

Usage example

const [series] = await client.gamma.series.getSeriesById(10388, { include_chat: true });

console.log(series.title);

Failure modes

  • id must be numeric.