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
Nie możesz znaleźć filmu lub serialu? Zaloguj się, aby go utworzyć.
Want to rate or add this item to a list?
Not a member?
Odpowiedź użytkownika superboy97
1 lipca 2024 o godz. 12:36AM
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.
Odpowiedź użytkownika Travis Bell
1 lipca 2024 o godz. 10:12AM
Or, if you want to be filtering by localized release dates, use
region
alongsiderelease_date.xxx
.Odpowiedź użytkownika joaosardinha
5 lipca 2024 o godz. 6:51PM
Thanks both