Hey all,
I鈥檝e been trying to use the /discover/movies API to find the highest-rated movies on different platforms. I鈥檝e noticed that the with_watch_providers argument doesn鈥檛 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鈥檛 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?
No trobeu una pel路l铆cula o una s猫rie? Inicieu la sessi贸 per a crear-la.
Desitgeu valorar o afegir aquest element a una llista?
No en sou membre?
Resposta per sumanthdps
el 25 n de 2025 a les 3:11 A.M.
Yeah, it's not working for me either.
Resposta per liquidixen
el 25 n de 2025 a les 7:11 A.M.
I'm quite new to this community, is there anywhere that I can report this bug?
Resposta per ticao2 馃嚙馃嚪 pt-BR
el 25 n de 2025 a les 8:53 A.M.
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
Resposta per liquidixen
el 25 n de 2025 a les 5:17 P.M.
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.
Resposta per Travis Bell
el 25 n de 2025 a les 6:30 P.M.
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):
Resposta per liquidixen
el 25 n de 2025 a les 7:05 P.M.
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.