I've been able to use the API to get details for a list of movies, but I was wondering how to find out what the MPAA rating for the movie is. Thanks!
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by Marr š³š±
on May 6, 2018 at 7:02 PM
I moved your thread to API support
Reply by ticao2 š§š· pt-BR
on May 7, 2018 at 10:36 AM
Maybe that will solve. I use the feature &append_to_response=release_dates.
See here https://developers.themoviedb.org/3/movies/get-movie-release-dates
Is the certification item.
Reply by lamchops84
on May 8, 2018 at 3:03 PM
Thanks! That is just what I needed!
Reply by sergioq
on April 15, 2020 at 4:48 AM
I've followed the answer given here, but I still can't find the MPAA rating. Is it under some strange key?
Reply by ticao2 š§š· pt-BR
on April 15, 2020 at 10:16 AM
In release_dates we see the different countries and in each of them the certification.
In order for someone to help you with API Request questions, it is critical that you post here the API Request you are using.
Remember to replace your Key with [THE_KEY].
Reply by Travis Bell
on April 15, 2020 at 10:18 AM
They're available in the /release_dates method. The query above included them. As an example:
Here's a snippet of the response, for example:
Reply by Adil Shoukat
on May 18, 2021 at 11:57 AM
It's giving a big array under release_dates if your search for a famous movie. For example, if you search for Titanic (ID: 597), the release_dates array has more than 40 elements. Most of them have rating "" but the node that has US released date has the rating PG13 Do we need to traverse the whole array to find the PG certificate? Just like we have a generic release_date with the movie detail, can we get a generic PG certificate the same way?
Reply by cainiegsegg
on June 16, 2021 at 3:02 PM
This is my question too. Is there a way to get only the US certification instead of having to deal with such a large API response?
Reply by Travis Bell
on June 17, 2021 at 12:09 PM
Hi @faultyhawk, unfortunately we do not provide a way to filter the results of a
/release_dates
request at this time. This is something you will have to do client side.Reply by cainiegsegg
on June 17, 2021 at 11:00 PM
I understand. Thanks for your work.