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": 100,
"genres": [],
"homepage": "",
"id": 1401723,
"imdb_id": null,
"origin_country": [
"TR"
],
"original_language": "tr",
"original_title": "Gölge",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 0,
"spoken_languages": [],
"status": "Released",
"tagline": "",
"title": "Gölge",
"video": false,
"vote_average": 0,
"vote_count": 0
}
This endpoint allows you to 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": 100,
"genres": [],
"homepage": "",
"id": 1401723,
"imdb_id": null,
"origin_country": [
"TR"
],
"original_language": "tr",
"original_title": "Gölge",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [],
"production_countries": [],
"release_date": "",
"revenue": 0,
"runtime": 0,
"spoken_languages": [],
"status": "Released",
"tagline": "",
"title": "Gölge",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Fetch movie keywords Copy
The response is of type object
.