🍿 @lorenzopant/tmdb

Latest

Get the most recently added movie on TMDB.

Get the newest movie added to TMDB. This is a live response that changes continuously as new movies are added.

async latest(): Promise<MovieDetails>

TMDB Reference: Movie Latest

Parameters

No parameters.

Returns

MovieDetails

Example

const latest = await tmdb.movies.latest();
console.log(latest.title);

On this page