Skip to main content
GET
/
3
/
movie
/
latest
Get latest movies
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": [],
  "homepage": "",
  "id": 1410780,
  "imdb_id": null,
  "origin_country": [
    "EG"
  ],
  "original_language": "ar",
  "original_title": "جرانيتا",
  "overview": "A young Egyptian man travels with his family to Hurghada on a work trip, where he works with foreign tourists. There, he meets a woman with an Egyptian father and an American mother. Despite his family's objections, he falls in love and marries her after she becomes pregnant. However, their marriage soon faces challenges as cultural differences emerge—he is deeply rooted in Upper Egyptian traditions, while she embraces a modern American lifestyle.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [],
  "production_countries": [],
  "release_date": "",
  "revenue": 0,
  "runtime": 99,
  "spoken_languages": [
    {
      "english_name": "Arabic",
      "iso_639_1": "ar",
      "name": "العربية"
    }
  ],
  "status": "Released",
  "tagline": "",
  "title": "Granita",
  "video": false,
  "vote_average": 0,
  "vote_count": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

New Request

adult
boolean
Example:

false

backdrop_path
any
belongs_to_collection
any
budget
number
Example:

0

genres
any[]
Example:
[]
homepage
string
Example:

""

id
number
Example:

1410780

imdb_id
any
origin_country
string[]
Example:
["EG"]
original_language
string
Example:

"ar"

original_title
string
Example:

"جرانيتا"

overview
string
Example:

"A young Egyptian man travels with his family to Hurghada on a work trip, where he works with foreign tourists. There, he meets a woman with an Egyptian father and an American mother. Despite his family's objections, he falls in love and marries her after she becomes pregnant. However, their marriage soon faces challenges as cultural differences emerge—he is deeply rooted in Upper Egyptian traditions, while she embraces a modern American lifestyle."

popularity
number
Example:

0

poster_path
any
production_companies
any[]
Example:
[]
production_countries
any[]
Example:
[]
release_date
string
Example:

""

revenue
number
Example:

0

runtime
number
Example:

99

spoken_languages
object[]
Example:
[
{
"english_name": "Arabic",
"iso_639_1": "ar",
"name": "العربية"
}
]
status
string
Example:

"Released"

tagline
string
Example:

""

title
string
Example:

"Granita"

video
boolean
Example:

false

vote_average
number
Example:

0

vote_count
number
Example:

0

I