GET
/
3
/
movie
/
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": [],
  "homepage": "",
  "id": 1410780,
  "imdb_id": null,
  "origin_country": [
    "EG"
  ],
  "original_language": "ar",
  "original_title": "جرانيتا",
  "overview": "A young Egyptian man travels with his family to Hurghada on a work trip, where he works with foreign tourists. There, he meets a woman with an Egyptian father and an American mother. Despite his family's objections, he falls in love and marries her after she becomes pregnant. However, their marriage soon faces challenges as cultural differences emerge—he is deeply rooted in Upper Egyptian traditions, while she embraces a modern American lifestyle.",
  "popularity": 0,
  "poster_path": null,
  "production_companies": [],
  "production_countries": [],
  "release_date": "",
  "revenue": 0,
  "runtime": 99,
  "spoken_languages": [
    {
      "english_name": "Arabic",
      "iso_639_1": "ar",
      "name": "العربية"
    }
  ],
  "status": "Released",
  "tagline": "",
  "title": "Granita",
  "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

New Request

The response is of type object.