The "3/discover/movie" endpoint seems to not filter based on the release_date filter properly, example:
will return this movie:
""" { "id": 1022789, "original_language": "en", "release_date": "2024-06-11", "title": "Inside Out 2", ... } """
It should be excluded given the release date is before 11th july
Can't find a movie or TV show? Login to create it.
Elementu hau kalifikatu edo zerrenda batera gehitzea nahi al duzu?
Ez zara kidea?
superboy97 Erabiltzailearen Erantzuna
Uztaila 1, 2024 egunean 12:36 AM(e)tan
This movie have a release in Czech Republic planned for July 18. Consequently, this answer is correct.
If you want to take in account only the primary release, you should use primary_release_date instead of release_date.
Travis Bell Erabiltzailearen Erantzuna
Uztaila 1, 2024 egunean 10:12 AM(e)tan
Or, if you want to be filtering by localized release dates, use
region
alongsiderelease_date.xxx
.joaosardinha Erabiltzailearen Erantzuna
Uztaila 5, 2024 egunean 6:51 PM(e)tan
Thanks both