GET
/
3
/
movie
/
latest
curl --request GET \
  --url https://api.themoviedb.org/3/movie/latest \
  --header 'Authorization: Bearer <token>'
{
  "adult": false,
  "backdrop_path": "/ayuGuiWsOtN6wA4OaMn7MWT6ztr.jpg",
  "belongs_to_collection": null,
  "budget": 0,
  "genres": [
    {
      "id": 27,
      "name": "Horror"
    }
  ],
  "homepage": "",
  "id": 1407342,
  "imdb_id": "tt34388134",
  "origin_country": [
    "CA"
  ],
  "original_language": "en",
  "original_title": "When Books Fly",
  "overview": "",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [
    {
      "id": 210560,
      "logo_path": null,
      "name": "L-Wing Productions",
      "origin_country": ""
    }
  ],
  "production_countries": [
    {
      "iso_3166_1": "CA",
      "name": "Canada"
    }
  ],
  "release_date": "2024-11-02",
  "revenue": 0,
  "runtime": 3,
  "spoken_languages": [
    {
      "english_name": "English",
      "iso_639_1": "en",
      "name": "English"
    }
  ],
  "status": "Released",
  "tagline": "",
  "title": "When Books Fly",
  "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

The response is of type object.