ACCOUNT
- Endpoints
AUTHENTICATION
- Endpoints
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
MOVIES
Latest
This endpoint gets the newest movie ID.
GET
/
3
/
movie
/
latest
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
Copy
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [
{
"id": 53,
"name": "Thriller"
}
],
"homepage": "",
"id": 1415963,
"imdb_id": null,
"origin_country": [
"IN"
],
"original_language": "hi",
"original_title": "Anushka's Nishabdham",
"overview": "When a world-renowned cello player is found dead in a house that is assumed to be haunted, his well-wishers and the authorities investigate to see if it is really the work of a supernatural being.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 102,
"spoken_languages": [
{
"english_name": "Hindi",
"iso_639_1": "hi",
"name": "हिन्दी"
}
],
"status": "Released",
"tagline": "",
"title": "Anushka's Nishabdham",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
Latest Example
The response is of type object
.
Copy
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
Copy
{
"adult": false,
"backdrop_path": null,
"belongs_to_collection": null,
"budget": 0,
"genres": [
{
"id": 53,
"name": "Thriller"
}
],
"homepage": "",
"id": 1415963,
"imdb_id": null,
"origin_country": [
"IN"
],
"original_language": "hi",
"original_title": "Anushka's Nishabdham",
"overview": "When a world-renowned cello player is found dead in a house that is assumed to be haunted, his well-wishers and the authorities investigate to see if it is really the work of a supernatural being.",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 102,
"spoken_languages": [
{
"english_name": "Hindi",
"iso_639_1": "hi",
"name": "हिन्दी"
}
],
"status": "Released",
"tagline": "",
"title": "Anushka's Nishabdham",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Assistant
Responses are generated using AI and may contain mistakes.