GET
/
3
/
movie
/
{movie_id}
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id} \
  --header 'Authorization: Bearer <token>'
{
  "adult": false,
  "backdrop_path": "/wgvc3PmjQGtYYDWaeuV867mnFDs.jpg",
  "belongs_to_collection": null,
  "budget": 90000000,
  "genres": [
    {
      "id": 878,
      "name": "Science Fiction"
    },
    {
      "id": 28,
      "name": "Action"
    },
    {
      "id": 12,
      "name": "Adventure"
    }
  ],
  "homepage": "https://www.sonypictures.com/movies/thefifthelement",
  "id": 18,
  "imdb_id": "tt0119116",
  "origin_country": [
    "FR"
  ],
  "original_language": "fr",
  "original_title": "Le Cinquième Élément",
  "overview": "In 2257, a taxi driver is unintentionally given the task of saving a young girl who is part of the key that will ensure the survival of humanity.",
  "popularity": 65.447,
  "poster_path": "/fPtlCO1yQtnoLHOwKtWz7db6RGU.jpg",
  "production_companies": [
    {
      "id": 9,
      "logo_path": "/nda3dTUYdDrJ6rZqBpYvY865aDv.png",
      "name": "Gaumont",
      "origin_country": "FR"
    }
  ],
  "production_countries": [
    {
      "iso_3166_1": "FR",
      "name": "France"
    }
  ],
  "release_date": "1997-05-02",
  "revenue": 263920180,
  "runtime": 126,
  "spoken_languages": [
    {
      "english_name": "English",
      "iso_639_1": "en",
      "name": "English"
    },
    {
      "english_name": "Swedish",
      "iso_639_1": "sv",
      "name": "svenska"
    },
    {
      "english_name": "German",
      "iso_639_1": "de",
      "name": "Deutsch"
    }
  ],
  "status": "Released",
  "tagline": "There is no future without it.",
  "title": "The Fifth Element",
  "video": false,
  "vote_average": 7.553,
  "vote_count": 10757
}

Authorizations

Authorization
string
header
required

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

Path Parameters

movie_id
integer
required

A unique identifier for a movie

Example:

18

Query Parameters

append_to_response
string

A comma separated list of endpoints within this namespace, 20 items max.

Example:

"collections"

language
string

The language and region of the content, represented by an ISO 639-1 and ISO 3166-1 code combination (e.g, en-US for English, United States.). Defaults to en-US.

Example:

"en-US"

Response

200 - application/json

Request successful

The response is of type object.