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": 4800000,
  "genres": [],
  "homepage": "http://rainbowfriendsmovie.com",
  "id": 1411987,
  "imdb_id": null,
  "origin_country": [
    "US"
  ],
  "original_language": "en",
  "original_title": "Rainbow Friends",
  "overview": "A group of schoolchildren embark on a field trip to an amusement park called Odd World, but the day takes a dark turn when their bus driver makes a wrong turn, leading to a crash. The driver is killed, and the children are left unconscious. Upon awakening, they find themselves trapped in a mysterious, sprawling indoor amusement center. An unknown figure forces them to complete a series of unsettling tasks, and the children soon realize they are not alone. Strange monsters roam the facility, creating an atmosphere of fear and uncertainty. As they navigate the eerie environment, the children must work together to survive and uncover the truth behind their captivity.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [],
  "production_countries": [],
  "release_date": "",
  "revenue": 0,
  "runtime": 120,
  "spoken_languages": [
    {
      "english_name": "English",
      "iso_639_1": "en",
      "name": "English"
    }
  ],
  "status": "In Production",
  "tagline": "It was supposed to be a normal field trip, but the Rainbow Friends want to play...",
  "title": "Rainbow Friends",
  "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:

4800000

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

"http://rainbowfriendsmovie.com"

id
number
Example:

1411987

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

"en"

original_title
string
Example:

"Rainbow Friends"

overview
string
Example:

"A group of schoolchildren embark on a field trip to an amusement park called Odd World, but the day takes a dark turn when their bus driver makes a wrong turn, leading to a crash. The driver is killed, and the children are left unconscious. Upon awakening, they find themselves trapped in a mysterious, sprawling indoor amusement center. An unknown figure forces them to complete a series of unsettling tasks, and the children soon realize they are not alone. Strange monsters roam the facility, creating an atmosphere of fear and uncertainty. As they navigate the eerie environment, the children must work together to survive and uncover the truth behind their captivity."

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:

120

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

"In Production"

tagline
string
Example:

"It was supposed to be a normal field trip, but the Rainbow Friends want to play..."

title
string
Example:

"Rainbow Friends"

video
boolean
Example:

false

vote_average
number
Example:

0

vote_count
number
Example:

0