🍿 @lorenzopant/tmdb

Airing Today

Get a list of TV shows airing today.

Get a list of TV shows airing today. The result is anchored to a timezone — use the timezone parameter to adjust the definition of "today" to a specific region.

async airing_today(params?: TVSeriesListParams): Promise<PaginatedResponse<TVSeriesResultItem>>

TMDB Reference: TV Airing Today

Parameters

NameTypeRequiredDescription
languageLanguageLanguage for localized results. Defaults to en-US.
pagenumberPage number for paginated results. Defaults to 1.
timezonestringTimezone to anchor "today" (e.g., "America/New_York").

Returns

PaginatedResponse<TVSeriesResultItem>

Example

const { results } = await tmdb.tvSeriesLists.airing_today({
	language: "en-US",
	timezone: "America/New_York",
});

console.log(results.map((s) => s.name));

On this page