tmdb-ts
    Preparing search index...

    Interface MovieQueryOptions

    Query options for discovering movies.

    interface MovieQueryOptions {
        certification?: string;
        certification_country?: string;
        "certification.gte"?: string;
        "certification.lte"?: string;
        include_adult?: boolean;
        include_video?: boolean;
        language?: string;
        page?: number;
        "primary_release_date.gte"?: string;
        "primary_release_date.lte"?: string;
        primary_release_year?: number;
        region?: string;
        "release_date.gte"?: string;
        "release_date.lte"?: string;
        sort_by?: SortOption;
        "vote_average.gte"?: number;
        "vote_average.lte"?: number;
        "vote_count.gte"?: number;
        "vote_count.lte"?: number;
        watch_region?: string;
        with_cast?: string;
        with_companies?: string;
        with_crew?: string;
        with_genres?: string;
        with_keywords?: string;
        with_original_language?: string;
        with_people?: string;
        with_release_type?: 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;
        year?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    certification?: string
    certification_country?: string
    "certification.gte"?: string
    "certification.lte"?: string
    include_adult?: boolean

    Include adult-only results.

    include_video?: boolean
    language?: string

    ISO 639-1 language code.

    page?: number
    "primary_release_date.gte"?: string
    "primary_release_date.lte"?: string
    primary_release_year?: number
    region?: string
    "release_date.gte"?: string
    "release_date.lte"?: string
    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_cast?: string

    A comma-separated list of person IDs (cast).

    with_companies?: string

    A comma-separated list of company IDs.

    with_crew?: string

    A comma-separated list of person IDs (crew).

    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_people?: string

    A comma-separated list of person IDs (cast and crew).

    with_release_type?: string
    "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.

    year?: number