Endpoints
- Account
- Authentication
- Certification
- Changes
- Collections
- Companies
- Configuration
- Credits
- Discover
- Find
- Genres
- Guest Session
- Keywords
- List
- Movie Lists
- Movies
- Networks
- People Lists
- People
- Reviews
- Search
- Trending
- TV Series Lists
- TV Series
- TV Seasons
- TV Episodes
- TV Episode Groups
- Watch Providers
- API Reference
Movies
Latest
Get the newest movie ID.
GET
/
3
/
movie
/
latest
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
}
Response
200 - application/json
Latest
The response is of type object
.
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
}