curl --request GET \
--url https://api.themoviedb.org/3/movie/latest
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [],
"homepage": "",
"id": 1414456,
"imdb_id": null,
"origin_country": [
"US"
],
"original_language": "en",
"original_title": "The Belly of the Beast",
"overview": "It is a disorienting cave exploration with something evil lurking in the shadows.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 9,
"spoken_languages": [],
"status": "Released",
"tagline": "",
"title": "The Belly of the Beast",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Get the newest movie ID.
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [],
"homepage": "",
"id": 1414456,
"imdb_id": null,
"origin_country": [
"US"
],
"original_language": "en",
"original_title": "The Belly of the Beast",
"overview": "It is a disorienting cave exploration with something evil lurking in the shadows.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 9,
"spoken_languages": [],
"status": "Released",
"tagline": "",
"title": "The Belly of the Beast",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Latest
The response is of type object
.