get https://api.themoviedb.org/3/movie/popular
Get a list of movies ordered by popularity.
Note
This call is really just a discover call behind the scenes. If you would like to tweak any of the default filters head over and read about discover.
curl --request GET \
--url 'https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1&sort_by=popularity.desc' \
--header 'Authorization: Bearer <<access_token>>' \
--header 'accept: application/json'