tmdb-ts
    Preparing search index...

    Interface MovieDetails

    Full details for a movie.

    interface MovieDetails {
        adult: boolean;
        backdrop_path: string;
        belongs_to_collection?: BelongsToCollection;
        budget: number;
        genres: Genre[];
        homepage: string;
        id: number;
        imdb_id: string | null;
        original_language: string;
        original_title: string;
        overview: string;
        popularity: number;
        poster_path?: string;
        production_companies: ProductionCompany[];
        production_countries: ProductionCountry[];
        release_date: string;
        revenue: number;
        runtime: number;
        spoken_languages: SpokenLanguage[];
        status: string;
        tagline: string;
        title: string;
        video: boolean;
        vote_average: number;
        vote_count: number;
    }
    Index

    Properties

    adult: boolean
    backdrop_path: string
    belongs_to_collection?: BelongsToCollection
    budget: number

    The movie's production budget in USD.

    genres: Genre[]
    homepage: string
    id: number
    imdb_id: string | null

    The IMDb ID, or null if not available.

    original_language: string
    original_title: string
    overview: string
    popularity: number
    poster_path?: string
    production_companies: ProductionCompany[]
    production_countries: ProductionCountry[]
    release_date: string

    Release date in YYYY-MM-DD format.

    revenue: number

    The movie's worldwide box office revenue in USD.

    runtime: number

    Runtime in minutes.

    spoken_languages: SpokenLanguage[]
    status: string

    Release status (e.g. "Released", "Post Production").

    tagline: string
    title: string
    video: boolean
    vote_average: number
    vote_count: number