GET
/
3
/
movie
/
{movie_id}
Details
curl --request GET \
  --url https://api.themoviedb.org/3/movie/{movie_id} \
  --header 'Authorization: Bearer <token>'
{
  "adult": false,
  "backdrop_path": "/eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg",
  "belongs_to_collection": {
    "backdrop_path": "/bcWmv9xsKv6xXmdz5OP2wefHcdx.jpg",
    "id": 137697,
    "name": "Finding Nemo Collection",
    "poster_path": "/xwggrEugjcJDuabIWvK2CpmK91z.jpg"
  },
  "budget": 94000000,
  "genres": [
    {
      "id": 16,
      "name": "Animation"
    },
    {
      "id": 10751,
      "name": "Family"
    }
  ],
  "homepage": "http://movies.disney.com/finding-nemo",
  "id": 12,
  "imdb_id": "tt0266543",
  "origin_country": [
    "US"
  ],
  "original_language": "en",
  "original_title": "Finding Nemo",
  "overview": "Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way.",
  "popularity": 115.556,
  "poster_path": "/eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg",
  "production_companies": [
    {
      "id": 3,
      "logo_path": "/1TjvGVDMYsj6JBxOAkUHpPEwLf7.png",
      "name": "Pixar",
      "origin_country": "US"
    }
  ],
  "production_countries": [
    {
      "iso_3166_1": "US",
      "name": "United States of America"
    }
  ],
  "release_date": "2003-05-30",
  "revenue": 940335536,
  "runtime": 100,
  "spoken_languages": [
    {
      "english_name": "English",
      "iso_639_1": "en",
      "name": "English"
    }
  ],
  "status": "Released",
  "tagline": "There are 3.7 trillion fish in the ocean. They're looking for one.",
  "title": "Finding Nemo",
  "video": false,
  "vote_average": 7.819,
  "vote_count": 19304
}

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
Example:

12

Query Parameters

append_to_reponse
string

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

language
string
default:en-US

Response

200 - application/json

Details

adult
boolean
Example:

false

backdrop_path
string
Example:

"/eCynaAOgYYiw5yN5lBwz3IxqvaW.jpg"

belongs_to_collection
object
budget
number
Example:

94000000

genres
object[]
Example:
[
{ "id": 16, "name": "Animation" },
{ "id": 10751, "name": "Family" }
]
homepage
string
Example:

"http://movies.disney.com/finding-nemo"

id
number
Example:

12

imdb_id
string
Example:

"tt0266543"

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

"en"

original_title
string
Example:

"Finding Nemo"

overview
string
Example:

"Nemo, an adventurous young clownfish, is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks, surfer dude turtles, hypnotic jellyfish, hungry seagulls, and more along the way."

popularity
number
Example:

115.556

poster_path
string
Example:

"/eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg"

production_companies
object[]
Example:
[
{
"id": 3,
"logo_path": "/1TjvGVDMYsj6JBxOAkUHpPEwLf7.png",
"name": "Pixar",
"origin_country": "US"
}
]
production_countries
object[]
Example:
[
{
"iso_3166_1": "US",
"name": "United States of America"
}
]
release_date
string
Example:

"2003-05-30"

revenue
number
Example:

940335536

runtime
number
Example:

100

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

"Released"

tagline
string
Example:

"There are 3.7 trillion fish in the ocean. They're looking for one."

title
string
Example:

"Finding Nemo"

video
boolean
Example:

false

vote_average
number
Example:

7.819

vote_count
number
Example:

19304