cURL
curl --request GET \ --url https://api.themoviedb.org/3/movie/{movie_id}/release_dates \ --header 'Authorization: Bearer <token>'
{ "id": 63429, "results": [ { "iso_3166_1": "IS", "release_dates": [ { "certification": "", "descriptors": [], "iso_639_1": "", "note": "", "release_date": "2005-12-07T00:00:00.000Z", "type": 3 } ] } ] }
Get the release dates and certifications for a movie.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
12345
Release Dates
63429
Show child attributes
[ { "iso_3166_1": "IS", "release_dates": [ { "certification": "", "descriptors": [], "iso_639_1": "", "note": "", "release_date": "2005-12-07T00:00:00.000Z", "type": 3 } ] }]