tmdb-ts
    Preparing search index...

    Interface TvShowQueryOptions

    Query options for discovering TV shows.

    interface TvShowQueryOptions {
        "air_date.gte"?: string;
        "air_date.lte"?: string;
        first_air_date_year?: number;
        "first_air_date.gte"?: string;
        "first_air_date.lte"?: string;
        include_adult?: boolean;
        include_null_first_air_dates?: boolean;
        language?: string;
        page?: number;
        screened_theatrically?: boolean;
        sort_by?: SortOption;
        timezone?: string;
        "vote_average.gte"?: number;
        "vote_average.lte"?: number;
        "vote_count.gte"?: number;
        "vote_count.lte"?: number;
        watch_region?: string;
        with_companies?: string;
        with_genres?: string;
        with_keywords?: string;
        with_networks?: string;
        with_original_language?: string;
        "with_runtime.gte"?: number;
        "with_runtime.lte"?: number;
        with_status?: string;
        with_type?: string;
        with_watch_monetization_types?: MonetizationType;
        with_watch_providers?: string;
        without_companies?: string;
        without_genres?: string;
        without_keywords?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    "air_date.gte"?: string
    "air_date.lte"?: string
    first_air_date_year?: number
    "first_air_date.gte"?: string
    "first_air_date.lte"?: string
    include_adult?: boolean

    Include adult-only results.

    include_null_first_air_dates?: boolean
    language?: string

    ISO 639-1 language code.

    page?: number
    screened_theatrically?: boolean
    sort_by?: SortOption

    Sort results by the given option.

    timezone?: string
    "vote_average.gte"?: number

    Filter by minimum vote average.

    "vote_average.lte"?: number
    "vote_count.gte"?: number

    Filter by minimum vote count.

    "vote_count.lte"?: number
    watch_region?: string

    ISO 3166-1 country code for watch provider filtering.

    with_companies?: string

    A comma-separated list of company IDs.

    with_genres?: string

    A comma-separated list of genre IDs.

    with_keywords?: string

    A comma-separated list of keyword IDs.

    with_networks?: string

    A comma-separated list of network IDs.

    with_original_language?: string

    ISO 639-1 language code for original language filtering.

    "with_runtime.gte"?: number

    Filter by minimum runtime in minutes.

    "with_runtime.lte"?: number

    Filter by maximum runtime in minutes.

    with_status?: string
    with_type?: string
    with_watch_monetization_types?: MonetizationType
    with_watch_providers?: string

    A comma-separated list of watch provider IDs. Combine with watch_region.

    without_companies?: string

    A comma-separated list of company IDs to exclude.

    without_genres?: string

    A comma-separated list of genre IDs to exclude.

    without_keywords?: string

    A comma-separated list of keyword IDs to exclude.