tmdb-ts
    Preparing search index...

    Interface DiscoverQueryOptions

    Common query options shared between movie and TV show discovery.

    interface DiscoverQueryOptions {
        include_adult?: boolean;
        language?: string;
        page?: number;
        sort_by?: SortOption;
        "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_original_language?: string;
        "with_runtime.gte"?: number;
        "with_runtime.lte"?: number;
        with_watch_monetization_types?: MonetizationType;
        with_watch_providers?: string;
        without_companies?: string;
        without_genres?: string;
        without_keywords?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    include_adult?: boolean

    Include adult-only results.

    language?: string

    ISO 639-1 language code.

    page?: number
    sort_by?: SortOption

    Sort results by the given option.

    "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_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_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.