The Movie Database Support

I am trying to make an API call to get a single movies details, for example:

 https://api.themoviedb.org/3/movie/442249?api_key=[MY_KEY] 

then I noticed it did not include what the movie certification was for that one particular movie.

I read how to make a call for that information here: https://developers.themoviedb.org/3/movies/get-movie-release-dates

So I have two questions...

(1) In a single call for only the release_dates
If I was going to make an additional call to get this movies certification information, by running this:

https://api.themoviedb.org/3/movie/442249/release_dates?api_key=[MY_KEY]

Is there a way to get only the information for "iso_3166_1": "US" , without having all other language objects showing in this call by appending something to the URL?

(2) In a single call for only the movie details with appended release_dates
How would I be able to make a single API call, like this:

https://api.themoviedb.org/3/movie/442249?api_key=[MY_KEY]&append_to_response=release_dates

but have only the information for iso_3166_1: "US" appended ?

1 reply (on page 1 of 1)

Jump to last post

Hi there,

Option #2 is your best bet, but no, there is no way to query just the US releases. Since /release_dates is an array, and movies can have more than one release per country, you'll have to iterate over the results looking for the specific release type that you want anyways. Best thing to do is have your own logic looking for the release dates (and types) you want.

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