I just want to know if the Popularity value can be updated when the Changes call is made through the API for each entity.
Es fehlt ein Film oder eine Serie? Logge dich ein zum Ergänzen.
Diesen Eintrag bewerten oder zu einer Liste hinzufügen?
Kein Mitglied?
Antwort von Travis Bell
am 5. September 2024 um 12:47
Hi @buenan,
I'm not sure if I understand the question. Can you explain what you're wondering a bit more?
Antwort von buenan
am 5. September 2024 um 15:47
Okay, sorry, I'm going to explain. I would like to know if the (Double) Popularity attribute of Movies, Series and People is updated when I call their respective changes. For example, if a Movie is listed on this endpoint https://api.themoviedb.org/3/movie/changes, I would make a call to its details to update everything, even if there are fields that haven't changed. What I want to know is if Popularity is considered a change so that the Movie that has changed the popularity is within this list, so that I can update the popularity field of each Movie that has changed by calling its details if it appears in the list of Changes.
Antwort von Travis Bell
am 5. September 2024 um 16:18
Hi @buenan,
Gotcha. No, changes in popularity are not tracked through the change system. Popularity is a value that is updated every 24 hours.
Antwort von buenan
am 5. September 2024 um 16:49
Okay thank you, understood, so there is no way to export somehow those popularity changes? for example if i call this endpoint -> https://api.themoviedb.org/3/trending/movie/{time_window}, all the movies that has been updated the popularity will be there, or just the 2000 movies? I use the time window for a day or a week and i have the same total results. Thanks a lot.
Antwort von Travis Bell
am 5. September 2024 um 16:52
Nope, there is not.
The best thing you can do is use our daily ID exports (which contain the popularity scores) and process the data that way.
Antwort von buenan
am 6. September 2024 um 02:47
Perfect, thanks.