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": 99,
      "name": "Documentary"
    }
  ],
  "homepage": "",
  "id": 1424480,
  "imdb_id": null,
  "origin_country": [
    "GB"
  ],
  "original_language": "en",
  "original_title": "Signpost",
  "overview": "Illustrates the reconstruction and electrification of the main railway line between Manchester and Sheffield. Showing the plan for the modernisation and re-equipping of British Railways. This film was produced for televising by the BBC during the evening that the plan was debated in parliament.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [
    {
      "id": 52835,
      "logo_path": null,
      "name": "British Transport Films",
      "origin_country": "GB"
    }
  ],
  "production_countries": [
    {
      "iso_3166_1": "GB",
      "name": "United Kingdom"
    }
  ],
  "release_date": "1955-01-01",
  "revenue": 0,
  "runtime": 5,
  "spoken_languages": [
    {
      "english_name": "English",
      "iso_639_1": "en",
      "name": "English"
    }
  ],
  "status": "Released",
  "tagline": "",
  "title": "Signpost",
  "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

adult
boolean
Example:

false

backdrop_path
any
belongs_to_collection
any
budget
number
Example:

0

genres
object[]
Example:
[{ "id": 99, "name": "Documentary" }]
homepage
string
Example:

""

id
number
Example:

1424480

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

"en"

original_title
string
Example:

"Signpost"

overview
string
Example:

"Illustrates the reconstruction and electrification of the main railway line between Manchester and Sheffield. Showing the plan for the modernisation and re-equipping of British Railways. This film was produced for televising by the BBC during the evening that the plan was debated in parliament."

popularity
number
Example:

0

poster_path
any
production_companies
object[]
Example:
[
{
"id": 52835,
"logo_path": null,
"name": "British Transport Films",
"origin_country": "GB"
}
]
production_countries
object[]
Example:
[
{
"iso_3166_1": "GB",
"name": "United Kingdom"
}
]
release_date
string
Example:

"1955-01-01"

revenue
number
Example:

0

runtime
number
Example:

5

spoken_languages
object[]
Example:
[
{
"english_name": "English",
"iso_639_1": "en",
"name": "English"
}
]
status
string
Example:

"Released"

tagline
string
Example:

""

title
string
Example:

"Signpost"

video
boolean
Example:

false

vote_average
number
Example:

0

vote_count
number
Example:

0