The Movie Database Support

I'm struggling with getting results for regional release dates. (I don't get any.)

When searching region (US) without a date, I get results.
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1&region=us&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60"

{
  "page": 1,
  "results": [
    {
[REDACTED for brevity]
      "original_title": "Deadpool & Wolverine",
      "overview": "A listless Wade Wilson toils away in civilian life with his days as the morally flexible mercenary, Deadpool, behind him. But when his homeworld faces an existential threat, Wade must reluctantly suit-up again with an even more reluctant Wolverine.",
      "popularity": 3546.58,
      "poster_path": "/8cdWjvZQUExUUTzyp4t6EDMubfO.jpg",
      **"release_date": "2024-07-24",**
      "title": "Deadpool & Wolverine",
      "video": false,
[REDACTED for brevity]
    },

But when I search for region + release date, I get nothing.
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1&region=us&release_date.gte=2024-07-24&release_date.lte=2024-07-24&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60"

{
  "page": 1,
  "results": [],
  "total_pages": 1,
  "total_results": 0
}

I've tried iterating a date (ex: May 1st) over every year since 1939 and get zero results.
The same function returns 270+ results for primary_release_date.gte/lte (with and without region) and 475+ results for release_date.gte/lte with no region.
But combining region + release date always returns 0 results. (And it doesn't matter whether I'm using my code or the TMDB widget here.)

10 replies (on page 1 of 1)

Jump to last post

The region parameter must be in uppercase letters.
It complies with ISO 3166-1
In your case US.

https://api.themoviedb.org/3/discover/movie?api_key=THE_KEY&include_adult=false&include_video=false&language=en-US&page=1&region=US&release_date.gte=2024-07-24&release_date.lte=2024-07-24&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60

@ticao2 said:

The region parameter must be in uppercase letters.
It complies with ISO 3166-1
In your case US.

https://api.themoviedb.org/3/discover/movie?api_key=THE_KEY&include_adult=false&include_video=false&language=en-US&page=1ยฎion=US&release_date.gte=2024-07-24&release_date.lte=2024-07-24&sort_by=popularity.desc&with_release_type=3&with_runtime.gte=60

Man, I could swear that I tried that yesterday because I actually checked that when I was troubleshooting. But I just uppercased my "region": "US", and lo & behold I get a list of movies.

Thank you so much!

But I'd like to note that the URL generated in the TMDB widget populates a lowercase region code. It should not do that as it's an example of how to use the API. Granted, basic problem-solving should have led me to try "US" (and I thought I did) I wasted hours battling that empty results list to no avail, all because I was following the example in the widget.

This is the sample code in TMDB's web widget:

import requests
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1&region=us&sort_by=popularity.desc"

@lazysupper said:
Thank you so much!

:-)

But I'd like to note that the URL generated in the TMDB widget populates a lowercase region code. It should not do that as it's an example of how to use the API. Granted, basic problem-solving should have led me to try "US" (and I thought I did) I wasted hours battling that empty results list to no avail, all because I was following the example in the widget.

This is the sample code in TMDB's web widget:

import requests
url = "https://api.themoviedb.org/3/discover/movie?include_adult=false&include_video=false&language=en-US&page=1ยฎion=us&sort_by=popularity.desc"

Hmm...
The field to specify Region does not have an example.
If you enter it in lowercase, the system does not change it to Uppercase.
It needs to be entered in Uppercase by the user.
I only see an example in Language. And it is correctly en-US.

@ticao2 said:

Hmm...
The field to specify Region does not have an example.
If you enter it in lowercase, the system does not change it to Uppercase.
It needs to be entered in Uppercase by the user.
I only see an example in Language. And it is correctly en-US.

Are you on this page: https://developer.themoviedb.org/reference/discover-movie? The field to specify region is there. It is between primary_release_date.lte and release_date.gte

And it's also in the code I shared above: &language=en-US&page=1&**region=us**&sort_by=popularity.desc

The widget doesn't change lowercase to uppercase, but it still returns results in the response box with its code showing a lowercase region, which is what led me to think that lowercase should work. Anyway, it's not an issue for me now, I just think it's not a great way to provide an example.

@lazysupper said:

@ticao2 said:

Hmm...
The field to specify Region does not have an example.
If you enter it in lowercase, the system does not change it to Uppercase.
It needs to be entered in Uppercase by the user.
I only see an example in Language. And it is correctly en-US.

Are you on this page:
https://developer.themoviedb.org/reference/discover-movie?
The field to specify region is there. It is between primary_release_date.lte and release_date.gte

Yes, that's the one.
My browser doesn't show any examples in this field.
https://imgur.com/a/lu69Axc
https://imgur.com/6EY9JQY
What operating system and browser are you using?

I don't mean that there's a placeholder example in the list of query parameters. I'm referring to the example code that the widget populates. https://imgur.com/a/hg3YP1V

@lazysupper said:
I don't mean that there's a placeholder example in the list of query parameters.
I'm referring to the example code that the widget populates.
https://imgur.com/a/hg3YP1V

I'm not sure I understand.
In the field you type US, in capital letters, and the widget populate it with us, in lowercase?
Well, that doesn't happen in my browser.
If I use US in capital letters, the widget populate in uppercase.
If I use us in lowercase, the widget populate in lowercase.
It seems that the widget behaves differently for me than it does for you.

@ticao2 said:

@lazysupper said:
I don't mean that there's a placeholder example in the list of query parameters.
I'm referring to the example code that the widget populates.
https://imgur.com/a/hg3YP1V

I'm not sure I understand.
In the field you type US, in capital letters, and the widget populate it with us, in lowercase?
Well, that doesn't happen in my browser.
If I use US in capital letters, the widget populate in uppercase.
If I use us in lowercase, the widget populate in lowercase.
It seems that the widget behaves differently for me than it does for you.

We're seeing the same thing. (I type us and the widget populates the URL in lowercase.) I'm simply saying that it delivers a response. That's my point. It should return nothing, otherwise the implication is that lowercase is acceptable.

@lazysupper said:
We're seeing the same thing. (I type us and the widget populates the URL in lowercase.) I'm simply saying that it delivers a response. That's my point. It should return nothing, otherwise the implication is that lowercase is acceptable.

Now I understand.
The system should correct from lowercase to uppercase or it should not accept lowercase and report an error perhaps.
I don't know if this service that TMDb uses, Readme, has this feature.
https://readme.com

@ticao2 said:

@lazysupper said:
We're seeing the same thing. (I type us and the widget populates the URL in lowercase.) I'm simply saying that it delivers a response. That's my point. It should return nothing, otherwise the implication is that lowercase is acceptable.

Now I understand.
The system should correct from lowercase to uppercase or it should not accept lowercase and report an error perhaps.
I don't know if this service that TMDb uses, Readme, has this feature.
https://readme.com

Ahh, that adds some clarity. Cheers!

Can't find a movie or TV show? Login to create it.

Global

s focus the search bar
p open profile menu
esc close an open window
? open keyboard shortcut window

On media pages

b go back (or to parent when applicable)
e go to edit page

On TV season pages

(right arrow) go to next season
(left arrow) go to previous season

On TV episode pages

(right arrow) go to next episode
(left arrow) go to previous episode

On all image pages

a open add image window

On all edit pages

t open translation selector
ctrl+ s submit form

On discussion pages

n create new discussion
w toggle watching status
p toggle public/private
c toggle close/open
a open activity
r reply to discussion
l go to last reply
ctrl+ enter submit your message
(right arrow) next page
(left arrow) previous page

Settings

Want to rate or add this item to a list?

Login