Hi all, I'm a new Javascript student and I'm having a terribly tough time with using the API and gathering more results -- I apologize if this sounds ill informed, I'm just wracking my brain trying to understand the documents practically.
I'm trying to make a random movie generator app that scours through TMDB and will give a random result based on the parameters the user searches for (genre, language, and year), but starting off my document I can only seem to retrieve 20 movies but it's showing me there's 692k results and 34k pages. How would I be able to use an entire list of movies to scrub through? Is that possible?
Here's the very basic api search I've started to test with my code. Please let me know if I've completely missed on what I was trying to do. Any help (in simple language š) is appreciated, thanks in advance.
<script>
const app = {};
app.apiKey = 'THE_KEY';
app.randomizer = () => {
$.ajax({
url: 'https://api.themoviedb.org/3/discover/movie?api_key=THE_KEY&language=en-US&sort_by=vote_average.asc&include_adult=false&include_video=false&page=1&with_watch_monetization_types=flatrate',
method: 'get',
dataType: 'json'
}).then(function(data) {
console.log(data);
});
};
app.init = () => {
app.randomizer()
}
$(function () {
app.init();
})
</script>
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by ticao2 š§š· pt-BR
on August 8, 2022 at 10:49 AM
The number/quantity of Items per Page and the number/quantity of Pages
cannot be changed, configured, specified, restricted, or anything like that.
There will always be up to 20 items per page.
And a maximum of 500 pages.
Therefore, at most 10,000 items.
Of course, depending on the parameters used in your API Request
this number/quantity can be much smaller.
Eventually zero.
In a Trending API Request, the quantities are greater.
A maximum of 1,000 pages
Therefore a maximum of 20,000 items
What you can do is just specify the page number you want.
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=1
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=2
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=3
...
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=494
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=495
...
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=996
https://api.themoviedb.org/3/trending/all/day?api_key=THE_KEY&page=997
That is, make an API Request for each page.
Reply by ticao2 š§š· pt-BR
on August 9, 2022 at 9:38 AM
I changed your API Key to the expression "THE_KEY" so that other users don't have access to it.