GET
/
3
/
movie
/
latest
Latest
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
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Latest Example

adult
boolean
Example:

false

backdrop_path
any
belongs_to_collection
any
budget
number
Example:

0

genres
object[]
Example:
[{ "id": 53, "name": "Thriller" }]
homepage
string
Example:

""

id
number
Example:

1415963

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

"hi"

original_title
string
Example:

"Anushka's Nishabdham"

overview
string
Example:

"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
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:

102

spoken_languages
object[]
Example:
[
{
"english_name": "Hindi",
"iso_639_1": "hi",
"name": "हिन्दी"
}
]
status
string
Example:

"Released"

tagline
string
Example:

""

title
string
Example:

"Anushka's Nishabdham"

video
boolean
Example:

false

vote_average
number
Example:

0

vote_count
number
Example:

0