Skip to main content
GET
/
3
/
movie
/
latest
Latest
curl --request GET \
  --url https://api.themoviedb.org/3/movie/latest
{
  "adult": false,
  "backdrop_path": null,
  "belongs_to_collection": null,
  "budget": 0,
  "genres": [],
  "homepage": "",
  "id": 1414456,
  "imdb_id": null,
  "origin_country": [
    "US"
  ],
  "original_language": "en",
  "original_title": "The Belly of the Beast",
  "overview": "It is a disorienting cave exploration with something evil lurking in the shadows.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [],
  "production_countries": [],
  "release_date": "",
  "revenue": 0,
  "runtime": 9,
  "spoken_languages": [],
  "status": "Released",
  "tagline": "",
  "title": "The Belly of the Beast",
  "video": false,
  "vote_average": 0,
  "vote_count": 0
}

Response

200 - application/json

Latest

adult
boolean
Example:

false

backdrop_path
any
belongs_to_collection
any
budget
number
Example:

0

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

""

id
number
Example:

1414456

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

"en"

original_title
string
Example:

"The Belly of the Beast"

overview
string
Example:

"It is a disorienting cave exploration with something evil lurking in the shadows."

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:

9

spoken_languages
any[]
Example:
[]
status
string
Example:

"Released"

tagline
string
Example:

""

title
string
Example:

"The Belly of the Beast"

video
boolean
Example:

false

vote_average
number
Example:

0

vote_count
number
Example:

0

I