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
| Name | Type | Required | Description |
|---|---|---|---|
language | Language | ❌ | Language for localized results. Defaults to en-US. |
page | number | ❌ | Page number for paginated results. Defaults to 1. |
timezone | string | ❌ | Timezone 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));