Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Movies
Latest
This endpoint retrieves a list of the latest movies. It is a live request and will continuously change.
GET
/
3
/
movie
/
latest
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": "/ayuGuiWsOtN6wA4OaMn7MWT6ztr.jpg",
"belongs_to_collection": null,
"budget": 0,
"genres": [
{
"id": 27,
"name": "Horror"
}
],
"homepage": "",
"id": 1407342,
"imdb_id": "tt34388134",
"origin_country": [
"CA"
],
"original_language": "en",
"original_title": "When Books Fly",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [
{
"id": 210560,
"logo_path": null,
"name": "L-Wing Productions",
"origin_country": ""
}
],
"production_countries": [
{
"iso_3166_1": "CA",
"name": "Canada"
}
],
"release_date": "2024-11-02",
"revenue": 0,
"runtime": 3,
"spoken_languages": [
{
"english_name": "English",
"iso_639_1": "en",
"name": "English"
}
],
"status": "Released",
"tagline": "",
"title": "When Books Fly",
"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
The response is of type object
.
curl --request GET \
--url https://api.themoviedb.org/3/movie/latest \
--header 'Authorization: Bearer <token>'
{
"adult": false,
"backdrop_path": "/ayuGuiWsOtN6wA4OaMn7MWT6ztr.jpg",
"belongs_to_collection": null,
"budget": 0,
"genres": [
{
"id": 27,
"name": "Horror"
}
],
"homepage": "",
"id": 1407342,
"imdb_id": "tt34388134",
"origin_country": [
"CA"
],
"original_language": "en",
"original_title": "When Books Fly",
"overview": "",
"popularity": 0,
"poster_path": null,
"production_companies": [
{
"id": 210560,
"logo_path": null,
"name": "L-Wing Productions",
"origin_country": ""
}
],
"production_countries": [
{
"iso_3166_1": "CA",
"name": "Canada"
}
],
"release_date": "2024-11-02",
"revenue": 0,
"runtime": 3,
"spoken_languages": [
{
"english_name": "English",
"iso_639_1": "en",
"name": "English"
}
],
"status": "Released",
"tagline": "",
"title": "When Books Fly",
"video": false,
"vote_average": 0,
"vote_count": 0
}
Assistant
Responses are generated using AI and may contain mistakes.