I see the endpoint "{{baseUrl}}/certification/movie/list". But I cannot find a movie property, for example in the movie details, that gives me the ratings/ certifications/ age rating. Where can I find it?
https://i.ibb.co/82rSK0B/Screenshot-2023-01-14-at-11-48-43.png
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 ticao2 š§š· pt-BR
on January 14, 2023 at 8:14 PM
A film's Certifications are tied to release_dates.
Can be obtained exclusively using get/movie/{movie_id}/release_dates
https://developers.themoviedb.org/3/movies/get-movie-release-dates
Or also using append_to_response
https://developers.themoviedb.org/3/movies/get-movie-details
Example
See that the certification item is with each release_date.
Reply by kerner1000
on January 16, 2023 at 7:57 PM
Excellent, thanks, I will try it out!