Hey all,
I’ve been trying to use the /discover/movies API to find the highest-rated movies on different platforms. I’ve noticed that the with_watch_providers argument doesn’t seem to be working. I get the same results whether I include it or not.
Also, when I specify a provider like Netflix (ID 8), I still see movies that aren’t available on Netflix. Has anyone else run into this issue?
I've also tried mimicing the parameters send by www.themoviedb.org/movie to their backend. I would expect that I get the same results, but that doesn't seem to be the case, I get the same results, without a provider applied though.
Can anyone verify if this also happens to them?
لم تجد الفلم أو المسلسل ؟ سجل دخولك و انشئها
هل تريد تقييم او اضافة هذا العنصر للقائمة؟
لست عضو؟
رد بواسطة sumanthdps
بتاريخ يناير 25, 2025 في 3:11 صباحا
Yeah, it's not working for me either.
رد بواسطة liquidixen
بتاريخ يناير 25, 2025 في 7:11 صباحا
I'm quite new to this community, is there anywhere that I can report this bug?
رد بواسطة ticao2 🇧🇷 pt-BR
بتاريخ يناير 25, 2025 في 8:53 صباحا
It's right here.
It makes things much easier if you post your API Request here.
Problems with API Request
In order for someone to help you with API Request questions,
it is critical that you post here the API Request you are sending to the TMDb server.
Remember to replace your Key with MY_KEY , YOUR_KEY , THE_KEY , or something like that.
Not the programming code/script you used to build the API Request.
But the API Request that is sent to the TMDb server.
Or the API Request you would like to send.
Are you using it together with the watch_region filter?
With only 1 country or with several?
See the explanation in the DOCs.
https://developer.themoviedb.org/reference/discover-movie
رد بواسطة liquidixen
بتاريخ يناير 25, 2025 في 5:17 مساءا
Thanks for the info, I did try it in conjunction with watch_region, just to try it out, but it did not result in a different response.
Below the API request in it's most basic form, copied (and tested) from the curl request in the docs.
As you can see, this request just queries for the highest voted movies from Netflix (provider ID 8).
Here my first and second result as returned from the API request:
Whilst according to the website, for Netflix, it should be:
With no provider ID it would, according to the website, indeed be:
I've tried multiple providers, but it always returns the same result. Thus it appears to me that the with_watch_providers query parameter is not correctly handled by the endpoint.
If you'd like me to do more testing, let me know what you expect and I'd gladly do that for you.
رد بواسطة Travis Bell
بتاريخ يناير 25, 2025 في 6:30 مساءا
As @ticao2 pointed out,
watch_region
is required to usewith_watch_providers
, as the documentation states.Here's two different calls, with two different sets of results:
US Netflix (4275 results):
Canadian Netflix (4677 results):
رد بواسطة liquidixen
بتاريخ يناير 25, 2025 في 7:05 مساءا
Hi, you are correct, I interpreted the documentation as "can be used in conjunction with "watch_region". In my tests I seem to have mistakenly used "certification_country" instead of "watch_region". It does seem te be functioning correctly when using "watch_region". Thank you for your help and my deepest appologies for wasting your time.