Get the newest movie ID.
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [],
"homepage": "",
"id": 1410780,
"imdb_id": null,
"origin_country": [
"EG"
],
"original_language": "ar",
"original_title": "جرانيتا",
"overview": "A young Egyptian man travels with his family to Hurghada on a work trip, where he works with foreign tourists. There, he meets a woman with an Egyptian father and an American mother. Despite his family's objections, he falls in love and marries her after she becomes pregnant. However, their marriage soon faces challenges as cultural differences emerge—he is deeply rooted in Upper Egyptian traditions, while she embraces a modern American lifestyle.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 99,
"spoken_languages": [
{
"english_name": "Arabic",
"iso_639_1": "ar",
"name": "العربية"
}
],
"status": "Released",
"tagline": "",
"title": "Granita",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
New Request
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [],
"homepage": "",
"id": 1410780,
"imdb_id": null,
"origin_country": [
"EG"
],
"original_language": "ar",
"original_title": "جرانيتا",
"overview": "A young Egyptian man travels with his family to Hurghada on a work trip, where he works with foreign tourists. There, he meets a woman with an Egyptian father and an American mother. Despite his family's objections, he falls in love and marries her after she becomes pregnant. However, their marriage soon faces challenges as cultural differences emerge—he is deeply rooted in Upper Egyptian traditions, while she embraces a modern American lifestyle.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 99,
"spoken_languages": [
{
"english_name": "Arabic",
"iso_639_1": "ar",
"name": "العربية"
}
],
"status": "Released",
"tagline": "",
"title": "Granita",
"video": false,
"vote_average": 0,
"vote_count": 0
}