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": [
{
"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
}
This endpoint gets 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": [
{
"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
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Latest Example
The response is of type object
.