The Movie Database API

Table of Contents

    API

    Transparent Proxy

    Please sign in and we'll assign you a private URL to trace your traffic and help you implement the API.

The Movie Database API

Below you will find a current list of the available methods on our movie data, actor and image API. If you need help or support, please head over to our talk page. To register for an API key, head into your account page on The Movie Database and generate a new key from within the "API Details" section.

About This Documentation

Every movie example documented below uses the movie Fight Club (id 550) while every person uses Brad Pitt (id 287). These are only used as examples to show what a real world request looks like.

Version 3 of our API has been released and it has some key differences when compared to our old 2.1 version. Please take a read through this documentation to familiarize yourself with these differences and if you have any questions, please post them to our API talk area.

Terms of Use

By using our API you are agreeing to our terms of use. You can read it here.

Third Party Libraries

There are a number of community contributed libraries. You can check them out here.

JSON & JSONP Response Format

Unlike previous versions of the API, v3 only supports a single format, JSON. XML and YAML support are being officially dropped. JSONP is also officially supported, just add a callback parameter to your request and the response will be encapsulated in the value you specified.

Request Rate Limiting

We do enforce a small amount of rate limiting. Please be aware that should you exceed these limits, you will receive a 503 error.

  • 30 requests every 10 seconds per IP
  • Maximum 20 simultaneous connections

HTTPS / SSL

v3 now supports SSL. Just make an https:// call instead of http:// and you're all set.

Required Parameters

Every request needs a valid API key and you can set this value as an HTTP parameter. A full request example looks like so:

http://api.themoviedb.org/3/movie/550?api_key=###

Languages

Our API supports translations just like 2.1 did but with an important difference—we no longer fall back to English in the event that a field hasn't been translated. If you make a request for the German translation and the overview hasn’t been translated, the field will be empty. There’s a few reasons for this but the main one is that in an effort to encourage users to add data to TMDb, it’s important for them to see when the data is missing.

If you want to fall back to English, you can make the separate call yourself and fill in missing data.

Appending Responses

The movie and person methods support a new parameter called append_to_response. When this parameter is present, the API will make an additional request behind the scenes to fetch the data you're asking for. A simple example would be if you wanted the default movie, release and trailer data. Until now, you would have to issue three separate requests. Now, you can issue one. Here's what that request looks like:

http://api.themoviedb.org/3/movie/550?api_key=###&append_to_response=releases,trailers

This request is the same as making these 3 separate requests, all we're doing is combining the responses into a single response for you. With this in mind, remember all parameters and responses will be the same as documented. Each appended request will map to an object in the JSON response with the same name.

Configuration

In an effort to lower our response sizes and add simplicity to the actual API methods, we are now using a central configuration. The data provided with this method is required for building full image URLs, or getting a list of available image sizes.

Apiary Transparent Proxy

This is an optional service you can use to help troubleshoot requests. You are not required to use it in any capacity. In real world use, we expect you to use our production end point.

Availability Statistics

You can check our public Pingdom account to view our most recent uptime as well as the average response times.

Configuration

GET

/3/configuration

Get the system wide configuration information. Some elements of the API require some knowledge of this configuration data. The purpose of this is to try and keep the actual API responses as light as possible. It is recommended you store this data within your application and check for updates every so often.

This method currently holds the data relevant to building image URLs as well as the change key map.

To build an image URL, you will need 3 pieces of data. The base_url, size and file_path. Simply combine them all and you will have a fully qualified URL. Here’s an example URL:

http://cf2.imgobject.com/t/p/w500/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg
Required Parameters
api_key

Response

200 (OK)
    Content-Type: application/json
    
{
    "images": {
        "base_url": "http://d3gtl9l2a4fn1j.cloudfront.net/t/p/",
        "secure_base_url": "https://d3gtl9l2a4fn1j.cloudfront.net/t/p/",
        "poster_sizes": [
            "w92",
            "w154",
            "w185",
            "w342",
            "w500",
            "original"
        ],
        "backdrop_sizes": [
            "w300",
            "w780",
            "w1280",
            "original"
        ],
        "profile_sizes": [
            "w45",
            "w185",
            "h632",
            "original"
        ],
        "logo_sizes": [
            "w45",
            "w92",
            "w154",
            "w185",
            "w300",
            "w500",
            "original"
        ]
    },
    "change_keys": [
        "adult",
        "also_known_as",
        "alternative_titles",
        "biography",
        "birthday",
        "budget",
        "cast",
        "character_names",
        "crew",
        "deathday",
        "general",
        "genres",
        "homepage",
        "images",
        "imdb_id",
        "name",
        "original_title",
        "overview",
        "plot_keywords",
        "production_companies",
        "production_countries",
        "releases",
        "revenue",
        "runtime",
        "spoken_languages",
        "status",
        "tagline",
        "title",
        "trailers",
        "translations"
    ]
}

Authentication

GET

/3/authentication/token/new

This method is used to generate a valid request token for user based authentication. A request token is required in order to request a session id.

You can generate any number of request tokens but they will expire after 60 minutes. As soon as a valid session id has been created the token will be destroyed.

Required Parameters
api_key

Response

200 (OK)
    Authentication-Callback: http://www.themoviedb.org/authenticate/641bf16c663db167c6cffcdff41126039d4445bf
    Content-Type: application/json
    
{
    "expires_at": "2012-02-09 19:50:25 UTC",
    "request_token": "641bf16c663db167c6cffcdff41126039d4445bf",
    "success": true
}

GET

/3/authentication/session/new

This method is used to generate a session id for user based authentication. A session id is required in order to use any of the write methods.

Required Parameters
api_key
request_tokenThe request token parameter is the token you generated for the user to approve. The token needs to be approved by the user before being used here. You can read more about this here.

Response

200 (OK)
    Content-Type: application/json
    
{
    "session_id": "80b2bf99520cd795ff54e31af97917bc9e3a7c8c",
    "success": true
}

GET

/3/authentication/guest_session/new

This method is used to generate a guest session id.

A guest session can be used to rate movies without having a registered TMDb user account. You should only generate a single guest session per user (or device) as you will be able to attach the ratings to a TMDb user account in the future. There is also IP limits in place so you should always make sure it's the end user doing the guest session actions.

If a guest session is not used for the first time within 24 hours, it will be automatically discarded.

Required Parameters
api_key

Response

200 (OK)
    Content-Type: application/json
    
{
    "success": true,
    "guest_session_id": "0c550fd5da2fc3f321ab3bs9b60ca108",
    "expires_at": "2012-12-04 22:51:19 UTC"
}

Account

GET

/3/account

Get the basic information for an account. You will need to have a valid session id.

Required Parameters
api_key
session_id

Response

200 (OK)
    Content-Type: application/json
    
{
    "id": 36,
    "include_adult": false,
    "iso_3166_1": "US",
    "iso_639_1": "en",
    "name": "John Doe",
    "username": "johndoe"
}

GET

/3/account/{id}/lists

Get the lists that you have created and marked as a favorite.

Required Parameters
api_key
session_id
Optional Parameters
page
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "description": "A list of \"frightful flicks waiting to be rediscovered\" -- compiled by the self-described leading name in the world of horror: Fangoria magazine.",
            "favorite_count": 2,
            "id": "50a6724919c295084b000028",
            "item_count": 101,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Fangoria's 101 Best Horror Movies You've Never Seen",
            "poster_path": "/3sL73Vy4kkrH4P61RA0n6UyYGlQ.jpg"
        },
        {
            "description": "Part of the AFI 100 Years… series, AFI's 100 Years…100 Thrills is a list of the top 100 heart-pounding movies in American cinema. The list was unveiled by the American Film Institute on June 12, 2001, during a CBS special hosted by Harrison Ford.",
            "favorite_count": 2,
            "id": "50a54d01760ee32e1400000b",
            "item_count": 100,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "AFI's 100 Most Thrilling American Films",
            "poster_path": "/tayO4gCLyEo8Uul8FHkJGy3Kppb.jpg"
        },
        {
            "description": "A list of films that earned its actresses the Razzie Award for Worst Actress of the year.",
            "favorite_count": 2,
            "id": "509fca90760ee3490f000a12",
            "item_count": 40,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Films featuring a Razzie winning Worst Actress Performance",
            "poster_path": "/eL61XP1l8H0qrBPJoKqhXdxumkw.jpg"
        },
        {
            "description": "A list of all films in the Star Wars universe including the theatrical motion picture releases.",
            "favorite_count": 2,
            "id": "509fc02119c295114a0007cb",
            "item_count": 14,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Star Wars Expanded Universe",
            "poster_path": "/rf6uEcD5V8zs4J7Huo5L9sYgSki.jpg"
        },
        {
            "description": "Here's my list of best picture winners for the Oscars. Thought it would be neat to see them all together. There's a lot of movies here I have never even heard of.",
            "favorite_count": 1,
            "id": "509ec17c19c2950a0600050e",
            "item_count": 84,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Best Picture Winners - The Academy Awards",
            "poster_path": "/efBm2Nm2v5kQnO0w3hYcW6hVsJU.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2008 Oscars for best picture.",
            "favorite_count": 1,
            "id": "509ec007760ee36f0c000917",
            "item_count": 5,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "80th Academy Awards (2008) - Best Picture Nominations",
            "poster_path": "/nWwFabqFaBbukXdkUCmtnrFxPNh.jpg"
        },
        {
            "description": "The View Askewniverse is a fictional universe created by writer/director Kevin Smith, featured in several films, comics and a television series; it is named for Smith's production company, View Askew Productions.",
            "favorite_count": 2,
            "id": "509691b119c29532730008fb",
            "item_count": 6,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "The View Askewniverse",
            "poster_path": "/tGmU66LL8edoRm1RO7sbrz1xuhr.jpg"
        },
        {
            "description": "Name pretty much says it all, here's the top 50 grossing films of all time.",
            "favorite_count": 2,
            "id": "50957b1419c295013800023e",
            "item_count": 50,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Top 50 Grossing Films of All Time (Worldwide)",
            "poster_path": "/sRbZeVtRKIWybTOVpCRPZtzW5bd.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2009 Oscars for best picture.",
            "favorite_count": 2,
            "id": "50957064760ee3698a001fc1",
            "item_count": 5,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "81st Academy Awards (2009) - Best Picture Nominations",
            "poster_path": "/gShtwIvdSHgCEQRZfymNkEUEwFm.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2010 Oscars for best picture.",
            "favorite_count": 2,
            "id": "50956fd2760ee3698a001fb1",
            "item_count": 10,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "82nd Academy Awards (2010) - Best Picture Nominations",
            "poster_path": "/8iwe0iP49A6Gqcv31jBleZDZqI4.jpg"
        },
        {
            "description": "A list of the theatrical releases for Marvel's Avengers characters that are in the latest Avengers movie.",
            "favorite_count": 3,
            "id": "50953114760ee34b91000293",
            "item_count": 7,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "The Avengers",
            "poster_path": "/2i89ujVkhJebuoB2zy6QZcwbr2N.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2011 Oscars for best picture.",
            "favorite_count": 1,
            "id": "509431ad19c2950b01000004",
            "item_count": 10,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "83rd Academy Awards (2011) - Best Picture Nominations",
            "poster_path": "/iAHDZPyLD3NW7GuNV6U1TVtb0hN.jpg"
        },
        {
            "description": "Here's a list of the films that take place in the DC Comics universe.",
            "favorite_count": 2,
            "id": "5094147819c2955e4c00006b",
            "item_count": 22,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "The DC Comics Universe",
            "poster_path": "/4H1jWsgEQOgTs4KeG5j5BorKMfX.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2012 Oscars for best picture.",
            "favorite_count": 1,
            "id": "50941340760ee35da9000054",
            "item_count": 9,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "84th Academy Awards (2012) - Best Picture Nominations",
            "poster_path": "/zRqBleU93WncYnIwt8LAanQerZ7.jpg"
        },
        {
            "description": "The idea behind this list is to collect the live action comic book movies from within the Marvel franchise.",
            "favorite_count": 5,
            "id": "50941077760ee35e1500000d",
            "item_count": 33,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "The Marvel Universe",
            "poster_path": "/w2JbuNpBnfevl0yCcYEm6vNFWdi.jpg"
        }
    ],
    "total_pages": 1,
    "total_results": 15
}

GET

/3/account/{id}/favorite_movies

Get the list of favorite movies for an account.

Required Parameters
api_key
session_id
Optional Parameters
page
sort_byOnly 'created_at` is currently supported.
sort_orderasc | desc
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/wrKcSXtHz4LedgEf1aW5e4ZVyHJ.jpg",
            "id": 9806,
            "original_title": "The Incredibles",
            "release_date": "2004-11-05",
            "poster_path": "/9k4sgKD79q0MDHSWIqNnHqOfOEV.jpg",
            "title": "The Incredibles",
            "vote_average": 8.5999999999999996,
            "vote_count": 46
        },
        {
            "backdrop_path": "/uAVdwu4vEx0TwuC4ewp9RqplKEV.jpg",
            "id": 1452,
            "original_title": "Superman Returns",
            "release_date": "2006-06-21",
            "poster_path": "/qpsarVxFcxJxtCK5dAoHLt3365R.jpg",
            "title": "Superman Returns",
            "vote_average": 6.5999999999999996,
            "vote_count": 20
        },
        {
            "backdrop_path": "/x9a4Q6Qlgh9Fk1f5z6K4r5OeLd9.jpg",
            "id": 8960,
            "original_title": "Hancock",
            "release_date": "2008-07-02",
            "poster_path": "/dsCxSr4w3g2ylhlZg3v5CB5Pid7.jpg",
            "title": "Hancock",
            "vote_average": 7.0,
            "vote_count": 34
        },
        {
            "backdrop_path": "/oPE44KcuRBKfuE15RD8sC2awh3P.jpg",
            "id": 9741,
            "original_title": "Unbreakable",
            "release_date": "2000-11-14",
            "poster_path": "/ndb1jugavBmgcfZKrfHXxC0T6al.jpg",
            "title": "Unbreakable",
            "vote_average": 7.7999999999999998,
            "vote_count": 25
        },
        {
            "backdrop_path": "/7u3pxc0K1wx32IleAkLv78MKgrw.jpg",
            "id": 603,
            "original_title": "The Matrix",
            "release_date": "1999-03-31",
            "poster_path": "/gynBNzwyaHKtXqlEKKLioNkjKgN.jpg",
            "title": "The Matrix",
            "vote_average": 9.0999999999999996,
            "vote_count": 249
        },
        {
            "backdrop_path": "/af98P1bc7lJsFjhHOVWXQgNNgSQ.jpg",
            "id": 424,
            "original_title": "Schindler's List",
            "release_date": "1993-11-30",
            "poster_path": "/I2lJ7ens7Rzlm3x5HfDbwF3ykh.jpg",
            "title": "Schindler's List",
            "vote_average": 8.6999999999999993,
            "vote_count": 41
        },
        {
            "backdrop_path": "/6kVVfNT0auG6fU5SFQ1zbayNWUC.jpg",
            "id": 7191,
            "original_title": "Cloverfield",
            "release_date": "2008-01-16",
            "poster_path": "/as01o40tJ2FhtheqeXf7bVZ0EQO.jpg",
            "title": "Cloverfield",
            "vote_average": 7.2000000000000002,
            "vote_count": 35
        },
        {
            "backdrop_path": "/6yFoLNQgFdVbA8TZMdfgVpszOla.jpg",
            "id": 218,
            "original_title": "The Terminator",
            "release_date": "1984-10-26",
            "poster_path": "/q8ffBuxQlYOHrvPniLgCbmKK4Lv.jpg",
            "title": "The Terminator",
            "vote_average": 8.5999999999999996,
            "vote_count": 67
        },
        {
            "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "id": 550,
            "original_title": "Fight Club",
            "release_date": "1999-10-15",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "title": "Fight Club",
            "vote_average": 9.0999999999999996,
            "vote_count": 175
        },
        {
            "backdrop_path": "/siKq2bQo09YGLTiqvKR1pXJ5li9.jpg",
            "id": 23483,
            "original_title": "Kick-Ass",
            "release_date": "2010-04-16",
            "poster_path": "/gtfggr5n3ED1neoTqVYmsVCoSS.jpg",
            "title": "Kick-Ass",
            "vote_average": 8.3000000000000007,
            "vote_count": 108
        },
        {
            "backdrop_path": "/419GfpzSip2cXf17x8FKIRHSSPK.jpg",
            "id": 679,
            "original_title": "Aliens",
            "release_date": "1986-07-18",
            "poster_path": "/qet8RDq99dRteBfSRfGeZeqY9xe.jpg",
            "title": "Aliens",
            "vote_average": 8.8000000000000007,
            "vote_count": 107
        },
        {
            "backdrop_path": "/sCtmAY3DgrFOjlrDh6mP7luUO7t.jpg",
            "id": 489,
            "original_title": "Good Will Hunting",
            "release_date": "1997-12-05",
            "poster_path": "/3yHtbRfp32AouPSwYESoJM3cOeQ.jpg",
            "title": "Good Will Hunting",
            "vote_average": 8.8000000000000007,
            "vote_count": 32
        },
        {
            "backdrop_path": "/5YF6MwuuKBRKLUE2dz3wetkgxAE.jpg",
            "id": 453,
            "original_title": "A Beautiful Mind",
            "release_date": "2001-12-13",
            "poster_path": "/79L8f0qbawvmdXE4ThVstC5sOxP.jpg",
            "title": "A Beautiful Mind",
            "vote_average": 8.5,
            "vote_count": 28
        },
        {
            "backdrop_path": "/bYtrTSGDqvd2KlHTO78b4Y3S4E9.jpg",
            "id": 807,
            "original_title": "Se7en",
            "release_date": "1995-09-22",
            "poster_path": "/zgB9CCTDlXRv50Z70ZI4elJtNEk.jpg",
            "title": "Se7en",
            "vote_average": 8.9000000000000004,
            "vote_count": 96
        },
        {
            "backdrop_path": "/6HbOqP1GUElNLdX8Bx2uP542CIP.jpg",
            "id": 180,
            "original_title": "Minority Report",
            "release_date": "2002-06-21",
            "poster_path": "/h3lpltSn7Rj1eYTPQO1lYGdw4Bz.jpg",
            "title": "Minority Report",
            "vote_average": 8.3000000000000007,
            "vote_count": 34
        },
        {
            "backdrop_path": "/i9A0UMFg1hI2kLyCCwnmSbpT2cd.jpg",
            "id": 73,
            "original_title": "American History X",
            "release_date": "1998-10-30",
            "poster_path": "/fXepRAYOx1qC3wju7XdDGx60775.jpg",
            "title": "American History X",
            "vote_average": 8.6999999999999993,
            "vote_count": 61
        },
        {
            "backdrop_path": "/5XPPB44RQGfkBrbJxmtdndKz05n.jpg",
            "id": 19995,
            "original_title": "Avatar",
            "release_date": "2009-12-18",
            "poster_path": "/s66l83fTQp0FAJsJqY0xUmkamcx.jpg",
            "title": "Avatar",
            "vote_average": 7.9000000000000004,
            "vote_count": 516
        },
        {
            "backdrop_path": "/e1uECwkwbD5Zpm9Gc6eb5mbG4C4.jpg",
            "id": 38,
            "original_title": "Eternal Sunshine of the Spotless Mind",
            "release_date": "2004-03-19",
            "poster_path": "/gutwXkVChJkpIrclokNESybj0GC.jpg",
            "title": "Eternal Sunshine of the Spotless Mind",
            "vote_average": 8.6999999999999993,
            "vote_count": 57
        },
        {
            "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg",
            "id": 78,
            "original_title": "Blade Runner",
            "release_date": "1982-06-25",
            "poster_path": "/ewq1lwhOT8GqBcQH1w8D1BagwTh.jpg",
            "title": "Blade Runner",
            "vote_average": 9.0,
            "vote_count": 147
        },
        {
            "backdrop_path": "/2nFyTvssbtJMLC6eyYwwZ88gALD.jpg",
            "id": 10681,
            "original_title": "WALL·E",
            "release_date": "2008-06-27",
            "poster_path": "/9cJETuLMc6R0bTWRA5i7ctY9bxk.jpg",
            "title": "WALL·E",
            "vote_average": 8.6999999999999993,
            "vote_count": 164
        }
    ],
    "total_pages": 2,
    "total_results": 34
}

POST

/3/account/{id}/favorite

Add or remove a movie to an accounts favorite list.

Required Parameters
api_key
session_id
Required JSON Body
movie_id
favoritetrue | false

Response

200 (OK)
    Content-Type: application/json
    
{
    "status_code": 12,
    "status_message": "The item/record was updated successfully"
}

GET

/3/account/{id}/rated_movies

Get the list of rated movies (and associated rating) for an account.

Required Parameters
api_key
session_id
Optional Parameters
page
sort_byOnly 'created_at` is currently supported.
sort_orderasc | desc
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/tjMZ4RBLhvk670gYJPxIN8SBfnB.jpg",
            "id": 13,
            "original_title": "Forrest Gump",
            "release_date": "1994-06-23",
            "poster_path": "/iZvCkb34CAmV9BETIrHY4yiS115.jpg",
            "rating": 8.0,
            "title": "Forrest Gump",
            "vote_average": 8.9000000000000004,
            "vote_count": 84
        },
        {
            "backdrop_path": "/e1uECwkwbD5Zpm9Gc6eb5mbG4C4.jpg",
            "id": 38,
            "original_title": "Eternal Sunshine of the Spotless Mind",
            "release_date": "2004-03-19",
            "poster_path": "/gutwXkVChJkpIrclokNESybj0GC.jpg",
            "rating": 9.0,
            "title": "Eternal Sunshine of the Spotless Mind",
            "vote_average": 8.6999999999999993,
            "vote_count": 57
        },
        {
            "backdrop_path": "/gTFGr8q5YzYYiRyDYaEMNB6QRuL.jpg",
            "id": 106,
            "original_title": "Predator",
            "release_date": "1987-06-12",
            "poster_path": "/gUpto7r2XwoM5eW7MUvd8hl1etB.jpg",
            "rating": 6.0,
            "title": "Predator",
            "vote_average": 8.4000000000000004,
            "vote_count": 49
        },
        {
            "backdrop_path": "/cNLZ7YGRikb4IsLblrzu86ndZPw.jpg",
            "id": 107,
            "original_title": "Snatch",
            "release_date": "2000-12-06",
            "poster_path": "/on9JlbGEccLsYkjeEph2Whm1DIp.jpg",
            "rating": 8.0,
            "title": "Snatch",
            "vote_average": 8.5999999999999996,
            "vote_count": 55
        },
        {
            "backdrop_path": "/pIUvQ9Ed35wlWhY2oU6OmwEsmzG.jpg",
            "id": 120,
            "original_title": "The Lord of the Rings: The Fellowship of the Ring",
            "release_date": "2001-12-19",
            "poster_path": "/9HG6pINW1KoFTAKY3LdybkoOKAm.jpg",
            "rating": 8.0,
            "title": "The Lord of the Rings: The Fellowship of the Ring",
            "vote_average": 8.8000000000000007,
            "vote_count": 125
        },
        {
            "backdrop_path": "/nnMC0BM6XbjIIrT4miYmMtPGcQV.jpg",
            "id": 155,
            "original_title": "The Dark Knight",
            "release_date": "2008-07-18",
            "poster_path": "/1hRoyzDtpgMU7Dz4JF22RANzQO7.jpg",
            "rating": 9.0,
            "title": "The Dark Knight",
            "vote_average": 8.8000000000000007,
            "vote_count": 269
        },
        {
            "backdrop_path": "/uv5BRIaJKfcPBPEBV8qfTjD6PuY.jpg",
            "id": 12,
            "original_title": "Finding Nemo",
            "release_date": "2003-05-30",
            "poster_path": "/zjqInUwldOBa0q07fOyohYCWxWX.jpg",
            "rating": 8.0,
            "title": "Finding Nemo",
            "vote_average": 8.6999999999999993,
            "vote_count": 41
        },
        {
            "backdrop_path": "/kriCxQiDhdosxzYXEf5JApMdmyq.jpg",
            "id": 187,
            "original_title": "Sin City",
            "release_date": "2005-04-01",
            "poster_path": "/eCJkepVJslq1nEtqURLaC1zLPAL.jpg",
            "rating": 8.0,
            "title": "Sin City",
            "vote_average": 8.4000000000000004,
            "vote_count": 64
        },
        {
            "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg",
            "id": 238,
            "original_title": "The Godfather",
            "release_date": "1972-03-24",
            "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg",
            "rating": 9.0,
            "title": "The Godfather",
            "vote_average": 9.1999999999999993,
            "vote_count": 125
        },
        {
            "backdrop_path": "/iX99sWgGZCnjPpDgG29E0HomMLI.jpg",
            "id": 275,
            "original_title": "Fargo",
            "release_date": "1996-03-15",
            "poster_path": "/gO0Q7TMuu8PJ9Y736VTgvY02rVD.jpg",
            "rating": 8.0,
            "title": "Fargo",
            "vote_average": 8.1999999999999993,
            "vote_count": 29
        },
        {
            "backdrop_path": "/d9AqtruwS8nljKjL5aYzM42hQJr.jpg",
            "id": 280,
            "original_title": "Terminator 2: Judgment Day",
            "release_date": "1991-07-01",
            "poster_path": "/2y4dmgWYRMYXdD1UyJVcn2HSd1D.jpg",
            "rating": 8.0,
            "title": "Terminator 2: Judgment Day",
            "vote_average": 9.0999999999999996,
            "vote_count": 106
        },
        {
            "backdrop_path": "/xRqsFFteJrvLHxswk78NzU7zOrU.jpg",
            "id": 289,
            "original_title": "Casablanca",
            "release_date": "1942-11-26",
            "poster_path": "/sm1QVZu5RKe1vXVHZooo4SZyHMx.jpg",
            "rating": 8.0,
            "title": "Casablanca",
            "vote_average": 8.5,
            "vote_count": 27
        },
        {
            "backdrop_path": "/heNbD1JojBNz6kfHWr3O8Uk0a3a.jpg",
            "id": 296,
            "original_title": "Terminator 3: Rise of the Machines",
            "release_date": "2003-06-30",
            "poster_path": "/lz4xYdF1n09lyiCfZWtWT44SZiG.jpg",
            "rating": 7.0,
            "title": "Terminator 3: Rise of the Machines",
            "vote_average": 6.7000000000000002,
            "vote_count": 44
        },
        {
            "backdrop_path": "/wH8vtnsmU4olFJ5wSRHo8RXRhKF.jpg",
            "id": 310,
            "original_title": "Bruce Almighty",
            "release_date": "2003-05-23",
            "poster_path": "/oHA5eAeJh7ChPsHnSsppNx4ta6L.jpg",
            "rating": 8.0,
            "title": "Bruce Almighty",
            "vote_average": 7.7000000000000002,
            "vote_count": 25
        },
        {
            "backdrop_path": "/tUGSLoMcxNWZ0OIRSqDaB2jNbdE.jpg",
            "id": 503,
            "original_title": "Poseidon",
            "release_date": "2006-05-12",
            "poster_path": "/kHrdehzlhyyb190D3RvH8mdX1y2.jpg",
            "rating": 6.0,
            "title": "Poseidon",
            "vote_average": 6.2000000000000002,
            "vote_count": 9
        },
        {
            "backdrop_path": "/tBCOpjphzSLzC6oOjqzTEg6bJ7q.jpg",
            "id": 534,
            "original_title": "Terminator Salvation",
            "release_date": "2009-05-21",
            "poster_path": "/hxDfhavtxA2Ayx7O9BsQMcZRdG0.jpg",
            "rating": 6.0,
            "title": "Terminator Salvation",
            "vote_average": 7.0,
            "vote_count": 57
        },
        {
            "backdrop_path": "/6TlMTnjtBcXFq7rSCcdQoBjTNPd.jpg",
            "id": 571,
            "original_title": "The Birds",
            "release_date": "1963-03-28",
            "poster_path": "/8tGRhGAbIZE97bnUAWrYSdqq71t.jpg",
            "rating": 6.0,
            "title": "The Birds",
            "vote_average": 8.0999999999999996,
            "vote_count": 6
        },
        {
            "backdrop_path": "/7u3pxc0K1wx32IleAkLv78MKgrw.jpg",
            "id": 603,
            "original_title": "The Matrix",
            "release_date": "1999-03-31",
            "poster_path": "/gynBNzwyaHKtXqlEKKLioNkjKgN.jpg",
            "rating": 9.0,
            "title": "The Matrix",
            "vote_average": 9.0999999999999996,
            "vote_count": 249
        },
        {
            "backdrop_path": "/jB9nQa6zJIZQ0htH5827Og7Mfsw.jpg",
            "id": 615,
            "original_title": "The Passion of the Christ",
            "release_date": "2004-02-25",
            "poster_path": "/6KyvP5bDmwTYdLLnhEn10NFPDIZ.jpg",
            "rating": 6.0,
            "title": "The Passion of the Christ",
            "vote_average": 7.5,
            "vote_count": 15
        },
        {
            "backdrop_path": "/nO0GtGFQmEuuOyAQVpHjJlWBU8O.jpg",
            "id": 616,
            "original_title": "The Last Samurai",
            "release_date": "2003-12-05",
            "poster_path": "/cRz4FRx731ulws6zHuQVaDXpx73.jpg",
            "rating": 8.0,
            "title": "The Last Samurai",
            "vote_average": 8.0999999999999996,
            "vote_count": 26
        }
    ],
    "total_pages": 12,
    "total_results": 239
}

GET

/3/account/{id}/movie_watchlist

Get the list of movies on an accounts watchlist.

Required Parameters
api_key
session_id
Optional Parameters
page
sort_byOnly 'created_at` is currently supported.
sort_orderasc | desc
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/xetk5vdoKxMIto5O5boqPGxWnoA.jpg",
            "id": 76726,
            "original_title": "Chronicle",
            "release_date": "2012-02-03",
            "poster_path": "/pSYRHYvOd8aFaddVUdyXJGZ8F6W.jpg",
            "title": "Chronicle",
            "vote_average": 7.2999999999999998,
            "vote_count": 32
        },
        {
            "backdrop_path": "/g9CDUXFBflsIch95wZxeNajTTX2.jpg",
            "id": 70435,
            "original_title": "Haywire",
            "release_date": "2011-11-07",
            "poster_path": "/8RlFYPPDFPr3ADrNHFGyB0JS6mo.jpg",
            "title": "Haywire",
            "vote_average": 6.9000000000000004,
            "vote_count": 18
        },
        {
            "backdrop_path": "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg",
            "id": 24428,
            "original_title": "The Avengers",
            "release_date": "2012-05-04",
            "poster_path": "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg",
            "title": "The Avengers",
            "vote_average": 8.5,
            "vote_count": 117
        },
        {
            "backdrop_path": "/5Jj4SpbsxmH2yOlhka4LvNRtSud.jpg",
            "id": 22970,
            "original_title": "The Cabin in the Woods",
            "release_date": "2012-04-13",
            "poster_path": "/t8cW3FSCDYCaWRiNHSvI6SDuWeA.jpg",
            "title": "The Cabin in the Woods",
            "vote_average": 6.9000000000000004,
            "vote_count": 22
        },
        {
            "backdrop_path": "/8iNsXY3LPsuT0gnUiTBMoNuRZI7.jpg",
            "id": 52520,
            "original_title": "Underworld: Awakening",
            "release_date": "2012-01-20",
            "poster_path": "/76GXWKs2IDi0ZERKLT57wkToV0A.jpg",
            "title": "Underworld: Awakening",
            "vote_average": 7.5,
            "vote_count": 36
        },
        {
            "backdrop_path": "/gVfnoiCJBdv2SN7poIbU7eyNVq1.jpg",
            "id": 12437,
            "original_title": "Underworld: Rise of the Lycans",
            "release_date": "2009-01-23",
            "poster_path": "/hZtK6fkusSKzGc0f7yQ2syo14Ze.jpg",
            "title": "Underworld: Rise of the Lycans",
            "vote_average": 7.2999999999999998,
            "vote_count": 30
        },
        {
            "backdrop_path": "/LvmmDZxkTDqp0DX7mUo621ahdX.jpg",
            "id": 10195,
            "original_title": "Thor",
            "release_date": "2011-05-06",
            "poster_path": "/jqcMUV73jEhO0gv5yi28FD8JbHQ.jpg",
            "title": "Thor",
            "vote_average": 7.2000000000000002,
            "vote_count": 79
        },
        {
            "backdrop_path": "/1ueWzFe8Klk5WDurB5j8yl5qdaq.jpg",
            "id": 1771,
            "original_title": "Captain America: The First Avenger",
            "release_date": "2011-07-22",
            "poster_path": "/sBZs1jSybBRBXDwcCR8IOyHLUMc.jpg",
            "title": "Captain America: The First Avenger",
            "vote_average": 7.5,
            "vote_count": 73
        },
        {
            "backdrop_path": "/uOpFdld7CIifSEoGuRVgWqaeyFs.jpg",
            "id": 64688,
            "original_title": "21 Jump Street",
            "release_date": "2012-05-10",
            "poster_path": "/mH6xazzfGdszadd1Xy9JgdZYvn1.jpg",
            "title": "21 Jump Street",
            "vote_average": 7.5,
            "vote_count": 25
        },
        {
            "backdrop_path": "/9mnDfS7nuja6wCGK5bBG3412Qdo.jpg",
            "id": 17578,
            "original_title": "The Adventures of Tintin",
            "release_date": "2011-10-26",
            "poster_path": "/7NwqKqEqJDmFP8hkLBpV0Sk6xek.jpg",
            "title": "The Adventures of Tintin",
            "vote_average": 7.7000000000000002,
            "vote_count": 47
        },
        {
            "backdrop_path": "/wX0mOAa91dTAT2WCGRvvpWUKAeD.jpg",
            "id": 59961,
            "original_title": "Safe House",
            "release_date": "2012-02-16",
            "poster_path": "/itJBQuozyehzoTh0X4YpKwIiFLy.jpg",
            "title": "Safe House",
            "vote_average": 7.5999999999999996,
            "vote_count": 39
        },
        {
            "backdrop_path": "/elnVoZPBXwGVh5xD5PLbvIzmvOZ.jpg",
            "id": 8967,
            "original_title": "The Tree of Life",
            "release_date": "2011-05-27",
            "poster_path": "/5uiccn657MLiAbVHS5SfWFdeSTw.jpg",
            "title": "The Tree of Life",
            "vote_average": 7.4000000000000004,
            "vote_count": 19
        },
        {
            "backdrop_path": "/cnGPiAd7D50YFcpt6HK7CwTUCew.jpg",
            "id": 49530,
            "original_title": "In Time",
            "release_date": "2011-10-28",
            "poster_path": "/lnYuAr3QOPzvuEFlzpsRUq41IEy.jpg",
            "title": "In Time",
            "vote_average": 6.9000000000000004,
            "vote_count": 54
        },
        {
            "backdrop_path": "/1qQiuN2QlBR3VmIwqBXYFGCCZbl.jpg",
            "id": 49527,
            "original_title": "Man on a Ledge",
            "release_date": "2012-01-27",
            "poster_path": "/ssl4ZcThbMtEPNBEXmWpSgtT9xK.jpg",
            "title": "Man on a Ledge",
            "vote_average": 7.2000000000000002,
            "vote_count": 16
        },
        {
            "backdrop_path": "/gxbO2y8jeEvwGHDLC8ErqSf61ca.jpg",
            "id": 80389,
            "original_title": "Get the Gringo",
            "release_date": "2012-05-01",
            "poster_path": "/6yo4E8B0WbIpiHbY01Dq8r6dH8V.jpg",
            "title": "Get the Gringo",
            "vote_average": 7.7000000000000002,
            "vote_count": 8
        },
        {
            "backdrop_path": "/pbYQevN15y5aEusvcsp3bpuu5Ip.jpg",
            "id": 65754,
            "original_title": "The Girl with the Dragon Tattoo",
            "release_date": "2011-12-21",
            "poster_path": "/voxRWFTtagLiqnJQs9tWQLB0MN.jpg",
            "title": "The Girl with the Dragon Tattoo",
            "vote_average": 7.9000000000000004,
            "vote_count": 49
        },
        {
            "backdrop_path": "/3DdCnPuMq5QRXRE4PMrI3VEQI94.jpg",
            "id": 13007,
            "original_title": "Religulous",
            "release_date": "2008-10-01",
            "poster_path": "/lGo6P1rEs1GJnYJW9a6whlcljtZ.jpg",
            "title": "Religulous",
            "vote_average": 7.4000000000000004,
            "vote_count": 4
        },
        {
            "backdrop_path": "/wWwHt3NvdnGLXrGRR4n7GU6ISkh.jpg",
            "id": 64690,
            "original_title": "Drive",
            "release_date": "2012-01-26",
            "poster_path": "/fsnaaNQ4RmZwgRv6qfT7NIi41Sj.jpg",
            "title": "Drive",
            "vote_average": 7.7999999999999998,
            "vote_count": 80
        },
        {
            "backdrop_path": "/dNdrWdlOEuisZ1YyafkkPEWAihn.jpg",
            "id": 12690,
            "original_title": "Appaloosa",
            "release_date": "2008-10-03",
            "poster_path": "/5Ql3TsG08yvVBDyV5azOWUVKmuy.jpg",
            "title": "Appaloosa",
            "vote_average": 7.4000000000000004,
            "vote_count": 13
        },
        {
            "backdrop_path": "/7u3UyejCbhM3jXcZ86xzA9JJxge.jpg",
            "id": 41154,
            "original_title": "Men in Black 3",
            "release_date": "2012-05-25",
            "poster_path": "/sIuneIyme2O3qYxEZTVNyJ0F0LC.jpg",
            "title": "Men in Black 3",
            "vote_average": 7.5,
            "vote_count": 27
        }
    ],
    "total_pages": 4,
    "total_results": 67
}

POST

/3/account/{id}/movie_watchlist

Add or remove a movie to an accounts watch list.

Required Parameters
api_key
session_id
Required JSON Body
movie_id
movie_watchlisttrue | false

Response

200 (OK)
    Content-Type: application/json
    
{
    "status_code": 1,
    "status_message": "Success"
}

Movies

GET

/3/movie/{id}

Get the basic movie information for a specific movie id.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "517bfb9f394e27a444a8fcba967944d0"
    Content-Type: application/json
    
{
    "adult": false,
    "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
    "belongs_to_collection": null,
    "budget": 63000000,
    "genres": [
        {
            "id": 28,
            "name": "Action"
        },
        {
            "id": 18,
            "name": "Drama"
        },
        {
            "id": 53,
            "name": "Thriller"
        }
    ],
    "homepage": "",
    "id": 550,
    "imdb_id": "tt0137523",
    "original_title": "Fight Club",
    "overview": "A ticking-time-bomb insomniac and a slippery soap salesman channel primal male aggression into a shocking new form of therapy. Their concept catches on, with underground \"fight clubs\" forming in every town, until an eccentric gets in the way and ignites an out-of-control spiral toward oblivion.",
    "popularity": 61151.745000000003,
    "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
    "production_companies": [
        {
            "name": "20th Century Fox",
            "id": 25
        }
    ],
    "production_countries": [
        {
            "iso_3166_1": "DE",
            "name": "Germany"
        },
        {
            "iso_3166_1": "US",
            "name": "United States of America"
        }
    ],
    "release_date": "1999-10-15",
    "revenue": 100853753,
    "runtime": 139,
    "spoken_languages": [
        {
            "iso_639_1": "en",
            "name": "English"
        }
    ],
    "status": "Released",
    "tagline": "How much can you know about yourself if you've never been in a fight?",
    "title": "Fight Club",
    "vote_average": 9.0999999999999996,
    "vote_count": 174
}

GET

/3/movie/{id}/alternative_titles

Get the alternative titles for a specific movie id.

Required Parameters
api_key
Optional Parameters
countryISO 3166-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "a7664969471f59db2c272c672df92ae1"
    Content-Type: application/json
    
{
    "id": 550,
    "titles": [
        {
            "iso_3166_1": "PL",
            "title": "Podziemny krąg"
        },
        {
            "iso_3166_1": "TW",
            "title": "鬥陣俱樂部"
        }
    ]
}

GET

/3/movie/{id}/casts

Get the cast information for a specific movie id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any movie method

Response

200 (OK)
    Content-Type: application/json
    
{
    "id": 550,
    "cast": [
        {
            "id": 819,
            "name": "Edward Norton",
            "character": "The Narrator",
            "order": 0,
            "profile_path": "/7cf2mCVI0qv2PnZVNbbEktS8Xae.jpg"
        },
        {
            "id": 287,
            "name": "Brad Pitt",
            "character": "Tyler Durden",
            "order": 1,
            "profile_path": "/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg"
        },
        {
            "id": 1283,
            "name": "Helena Bonham Carter",
            "character": "Marla Singer",
            "order": 2,
            "profile_path": "/s5WtwCxOuPR3aIYYZ06Cof7tw2A.jpg"
        },
        {
            "id": 7470,
            "name": "Meat Loaf",
            "character": "Robert 'Bob' Paulson",
            "order": 3,
            "profile_path": "/AsYkaWwsNCxORU372t0isSDDyad.jpg"
        },
        {
            "id": 7471,
            "name": "Zach Grenier",
            "character": "Richard Chesler",
            "order": 4,
            "profile_path": "/vtKQjYDLvx8AhUZtyYS61pU7DRF.jpg"
        },
        {
            "id": 7472,
            "name": "Richmond Arquette",
            "character": "Intern",
            "order": 5,
            "profile_path": null
        },
        {
            "id": 7219,
            "name": "David Andrews",
            "character": "Thomas",
            "order": 6,
            "profile_path": "/957tUR5s9FV3J25ruGmjQD8rD7A.jpg"
        },
        {
            "id": 7473,
            "name": "Rachel Singer",
            "character": "Chloe",
            "order": 7,
            "profile_path": "/aYlqeJIrFmbRAScxqhBSPVrG2pX.jpg"
        },
        {
            "id": 7497,
            "name": "Holt McCallany",
            "character": "The Mechanic",
            "order": 8,
            "profile_path": "/1xR6O1dkKDJ9ypurlKfQ1qqHv4n.jpg"
        },
        {
            "id": 7498,
            "name": "Eion Bailey",
            "character": "Ricky",
            "order": 9,
            "profile_path": "/aqDGV2NWABCnENOlPrd2lchs45n.jpg"
        },
        {
            "id": 7499,
            "name": "Jared Leto",
            "character": "Angel Face",
            "order": 10,
            "profile_path": "/9jZCWhSx8NU3VHB6TRzUvgWQK3I.jpg"
        },
        {
            "id": 7500,
            "name": "Peter Iacangelo",
            "character": "Lou",
            "order": 11,
            "profile_path": null
        }
    ],
    "crew": [
        {
            "id": 7469,
            "name": "Jim Uhls",
            "department": "Writing",
            "job": "Author",
            "profile_path": null
        },
        {
            "id": 7474,
            "name": "Ross Grayson Bell",
            "department": "Production",
            "job": "Producer",
            "profile_path": null
        },
        {
            "id": 7475,
            "name": "Ceán Chaffin",
            "department": "Production",
            "job": "Producer",
            "profile_path": null
        },
        {
            "id": 1254,
            "name": "Art Linson",
            "department": "Production",
            "job": "Producer",
            "profile_path": null
        },
        {
            "id": 7476,
            "name": "David Prior",
            "department": "Production",
            "job": "Producer",
            "profile_path": null
        },
        {
            "id": 7477,
            "name": "John King",
            "department": "Sound",
            "job": "Original Music Composer",
            "profile_path": null
        },
        {
            "id": 7478,
            "name": "Michael Simpson",
            "department": "Sound",
            "job": "Original Music Composer",
            "profile_path": null
        },
        {
            "id": 7479,
            "name": "Jeff Cronenweth",
            "department": "Camera",
            "job": "Director of Photography",
            "profile_path": null
        },
        {
            "id": 7480,
            "name": "James Haygood",
            "department": "Editing",
            "job": "Editor",
            "profile_path": null
        },
        {
            "id": 7481,
            "name": "Laray Mayfield",
            "department": "Production",
            "job": "Casting",
            "profile_path": null
        },
        {
            "id": 1303,
            "name": "Alex McDowell",
            "department": "Art",
            "job": "Production Design",
            "profile_path": null
        },
        {
            "id": 7763,
            "name": "Ren Klyce",
            "department": "Sound",
            "job": "Sound Editor",
            "profile_path": null
        },
        {
            "id": 7764,
            "name": "Richard Hymns",
            "department": "Sound",
            "job": "Sound Editor",
            "profile_path": null
        },
        {
            "id": 7467,
            "name": "David Fincher",
            "department": "Directing",
            "job": "Director",
            "profile_path": "/iTWJyV1yUoagqDzxyTjxoPuSVs.jpg"
        },
        {
            "id": 7468,
            "name": "Chuck Palahniuk",
            "department": "Writing",
            "job": "Novel",
            "profile_path": "/8nOJDJ6SqwV2h7PjdLBDTvIxXvx.jpg"
        }
    ]
}

GET

/3/movie/{id}/images

Get the images (posters and backdrops) for a specific movie id.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "362a205aa9b3eeef6c7e28444ccf2f10"
    Content-Type: application/json
    
{
    "id": 550,
    "backdrops": [
        {
            "file_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "width": 1280,
            "height": 720,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 6.6470588235294121,
            "vote_count": 17
        },
        {
            "file_path": "/8T0hpqWsgzKhWGsXGD8ilkwRPkC.jpg",
            "width": 1280,
            "height": 720,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 6.375,
            "vote_count": 12
        },
        {
            "file_path": "/hNFMawyNDWZKKHU4GYCBz1krsRM.jpg",
            "width": 1280,
            "height": 720,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 5.7142857142857144,
            "vote_count": 14
        },
        {
            "file_path": "/mMZRKb3NVo5ZeSPEIaNW9buLWQ0.jpg",
            "width": 1920,
            "height": 1080,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 5.5625,
            "vote_count": 8
        },
        {
            "file_path": "/9Kr6UzouF674Smw3D9Hp2DlH1Vo.jpg",
            "width": 1280,
            "height": 720,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 5.5499999999999998,
            "vote_count": 10
        },
        {
            "file_path": "/eTVdpy2JXaGFit2V2ToZ79v9D7R.jpg",
            "width": 1920,
            "height": 1080,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 5.25,
            "vote_count": 12
        },
        {
            "file_path": "/fuSeIUKsizmfiPIwDH7lKiFNQoD.jpg",
            "width": 1280,
            "height": 720,
            "iso_639_1": null,
            "aspect_ratio": 1.78,
            "vote_average": 4.2999999999999998,
            "vote_count": 5
        }
    ],
    "posters": [
        {
            "file_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "width": 1000,
            "height": 1500,
            "iso_639_1": "en",
            "aspect_ratio": 0.67000000000000004,
            "vote_average": 6.1395348837209305,
            "vote_count": 43
        },
        {
            "file_path": "/shFj1K58Tn55Qz2p2v0RqxXiXyo.jpg",
            "width": 1000,
            "height": 1408,
            "iso_639_1": "en",
            "aspect_ratio": 0.70999999999999996,
            "vote_average": 6.0,
            "vote_count": 2
        },
        {
            "file_path": "/jQ2iUsXI2jmUcOFGjOaONCLwaVp.jpg",
            "width": 675,
            "height": 1000,
            "iso_639_1": "en",
            "aspect_ratio": 0.68000000000000005,
            "vote_average": 5.546875,
            "vote_count": 32
        },
        {
            "file_path": "/6cMPLU1jv8pG9BMmieXCHDTVRPm.jpg",
            "width": 1479,
            "height": 2166,
            "iso_639_1": "es",
            "aspect_ratio": 0.68000000000000005,
            "vote_average": 5.375,
            "vote_count": 4
        },
        {
            "file_path": "/pKGrxTB35AkLsZCT8d8h6F9BSMN.jpg",
            "width": 1000,
            "height": 1500,
            "iso_639_1": "en",
            "aspect_ratio": 0.67000000000000004,
            "vote_average": 5.3611111111111107,
            "vote_count": 18
        },
        {
            "file_path": "/5qEBvDRdY2S2CJ9tsoFktIt8Xue.jpg",
            "width": 2689,
            "height": 3539,
            "iso_639_1": "es",
            "aspect_ratio": 0.76000000000000001,
            "vote_average": 5.25,
            "vote_count": 2
        },
        {
            "file_path": "/1dTxsr21UmFewu2CJ886JNqqkqn.jpg",
            "width": 2030,
            "height": 3000,
            "iso_639_1": "en",
            "aspect_ratio": 0.68000000000000005,
            "vote_average": 5.25,
            "vote_count": 6
        },
        {
            "file_path": "/olTEZdZJ7UKLE1o4hkFDq4jXBs8.jpg",
            "width": 713,
            "height": 1002,
            "iso_639_1": "hu",
            "aspect_ratio": 0.70999999999999996,
            "vote_average": 5.25,
            "vote_count": 2
        }
    ]
}

GET

/3/movie/{id}/keywords

Get the plot keywords for a specific movie id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "06ed999e72a65a881228dda2f93186ae"
    Content-Type: application/json
    
{
    "id": 550,
    "keywords": [
        {
            "id": 397,
            "name": "bare knuckle boxing"
        },
        {
            "id": 33851,
            "name": "capitalism"
        },
        {
            "id": 738,
            "name": "sexuality"
        },
        {
            "id": 825,
            "name": "support group"
        },
        {
            "id": 851,
            "name": "dual identity"
        },
        {
            "id": 158066,
            "name": "underground"
        },
        {
            "id": 1541,
            "name": "nihilism"
        },
        {
            "id": 162252,
            "name": "fight"
        },
        {
            "id": 3848,
            "name": "support"
        },
        {
            "id": 3927,
            "name": "rage and hate"
        },
        {
            "id": 4142,
            "name": "insomnia"
        },
        {
            "id": 11250,
            "name": "boxing"
        },
        {
            "id": 14681,
            "name": "martial arts"
        },
        {
            "id": 160882,
            "name": "brawl"
        },
        {
            "id": 17977,
            "name": "underground fighting"
        },
        {
            "id": 19813,
            "name": "flashback"
        },
        {
            "id": 19701,
            "name": "friendship"
        },
        {
            "id": 158439,
            "name": " liposuction"
        }
    ]
}

GET

/3/movie/{id}/releases

Get the release date by country for a specific movie id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "8cd68d030256f9d5659c6118e085feb6"
    Content-Type: application/json
    
{
    "id": 550,
    "countries": [
        {
            "iso_3166_1": "US",
            "certification": "R",
            "release_date": "1999-10-15"
        },
        {
            "iso_3166_1": "DE",
            "certification": "18",
            "release_date": "1999-11-11"
        },
        {
            "iso_3166_1": "GB",
            "certification": "18",
            "release_date": "1999-11-12"
        },
        {
            "iso_3166_1": "FR",
            "certification": "16",
            "release_date": "1999-11-10"
        },
        {
            "iso_3166_1": "TR",
            "certification": "",
            "release_date": "1999-12-10"
        },
        {
            "iso_3166_1": "BR",
            "certification": "feibris",
            "release_date": "1999-07-12"
        },
        {
            "iso_3166_1": "FI",
            "certification": "K-18",
            "release_date": "1999-11-12"
        },
        {
            "iso_3166_1": "BG",
            "certification": "c",
            "release_date": "2012-08-28"
        }
    ]
}

GET

/3/movie/{id}/trailers

Get the trailers for a specific movie id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "72e857d0850e3270b502f725bdbf30dd"
    Content-Type: application/json
    
{
    "id": 550,
    "quicktime": [],
    "youtube": [
        {
            "name": "Trailer 1",
            "size": "HD",
            "source": "SUXWAEX2jlg"
        }
    ]
}

GET

/3/movie/{id}/translations

Get the translations for a specific movie id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "8a7020d7e666b95e7e796f384f6b3c43"
    Content-Type: application/json
    
{
    "id": 550,
    "translations": [
        {
            "iso_639_1": "en",
            "name": "English",
            "english_name": "English"
        },
        {
            "iso_639_1": "es",
            "name": "Español",
            "english_name": "Spanish"
        },
        {
            "iso_639_1": "uk",
            "name": "Український",
            "english_name": "Ukrainian"
        },
        {
            "iso_639_1": "de",
            "name": "Deutsch",
            "english_name": "German"
        },
        {
            "iso_639_1": "pt",
            "name": "Português",
            "english_name": "Portuguese"
        },
        {
            "iso_639_1": "fr",
            "name": "Français",
            "english_name": "French"
        },
        {
            "iso_639_1": "nl",
            "name": "Nederlands",
            "english_name": "Dutch"
        },
        {
            "iso_639_1": "hu",
            "name": "Magyar",
            "english_name": "Hungarian"
        },
        {
            "iso_639_1": "ru",
            "name": "Pусский",
            "english_name": "Russian"
        },
        {
            "iso_639_1": "it",
            "name": "Italiano",
            "english_name": "Italian"
        },
        {
            "iso_639_1": "tr",
            "name": "Türkçe",
            "english_name": "Turkish"
        },
        {
            "iso_639_1": "zh",
            "name": "中国",
            "english_name": "Mandarin"
        },
        {
            "iso_639_1": "da",
            "name": "Dansk",
            "english_name": "Danish"
        },
        {
            "iso_639_1": "sv",
            "name": "svenska",
            "english_name": "Swedish"
        },
        {
            "iso_639_1": "pl",
            "name": "Polski",
            "english_name": "Polish"
        },
        {
            "iso_639_1": "cs",
            "name": "Český",
            "english_name": "Czech"
        },
        {
            "iso_639_1": "fi",
            "name": "suomi",
            "english_name": "Finnish"
        },
        {
            "iso_639_1": "he",
            "name": "עִבְרִית",
            "english_name": "Hebrew"
        }
    ]
}

GET

/3/movie/{id}/similar_movies

Get the similar movies for a specific movie id.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "ed6d3600ec1cf6d4ab30c24f6f33625e"
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/pbp2t6p44dt5Ll6MQoFTZKrnDPL.jpg",
            "id": 52591,
            "original_title": "Confessions of a Pit Fighter",
            "release_date": "2005-06-10",
            "poster_path": "/qOmYQRhnhBhCM51e212dOaTIrYB.jpg",
            "title": "Confessions of a Pit Fighter",
            "vote_average": 3.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/hnPGWzbv2EZCX9d803Emy3AajI5.jpg",
            "id": 9339,
            "original_title": "Click",
            "release_date": "2006-06-22",
            "poster_path": "/hsiJ9CsCEkUF63xwcbtaCwXuEF3.jpg",
            "title": "Click",
            "vote_average": 7.9000000000000004,
            "vote_count": 23
        },
        {
            "backdrop_path": "/snDywjmnJoAOKiAzeWu5QXg8yvT.jpg",
            "id": 22094,
            "original_title": "Hard Times",
            "release_date": "1975-10-08",
            "poster_path": "/6Akbb6imtNGfElJpyJZjN3uxSLW.jpg",
            "title": "Hard Times",
            "vote_average": 7.2999999999999998,
            "vote_count": 3
        },
        {
            "backdrop_path": "/vmpyNlphrzFlsiG8XcnaGeQ93WW.jpg",
            "id": 159,
            "original_title": "Der Bewegte Mann",
            "release_date": "1994-10-06",
            "poster_path": "/fPpMa0dZtWEzCE4DqYavN7I6zX1.jpg",
            "title": "Maybe... Maybe Not",
            "vote_average": 4.7999999999999998,
            "vote_count": 0
        },
        {
            "backdrop_path": "/cHdoSRtl0z607an2XVureR03PZ1.jpg",
            "id": 21001,
            "original_title": "Like It Is",
            "release_date": "1998-04-17",
            "poster_path": "/bMw3TUvXSd4ZijcOaDdqZBCmgcM.jpg",
            "title": "Like It Is",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/xfKwb7i3M86l7iuj7r90KEPWEOv.jpg",
            "id": 25974,
            "original_title": "Moscow Zero",
            "release_date": "2006-01-01",
            "poster_path": "/hgsWnod1EIOD4yHrNtwZI1EB0Ic.jpg",
            "title": "Moscow Zero",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/q0g0EY0Kc5tnRGRLKAxAZmRYv75.jpg",
            "id": 15039,
            "original_title": "Against the Dark",
            "release_date": "2009-01-01",
            "poster_path": "/kPqs0DRzRRd0x9Zr27mIR2PJONo.jpg",
            "title": "Against the Dark",
            "vote_average": 3.7000000000000002,
            "vote_count": 5
        },
        {
            "backdrop_path": "/pAqrJGedklZ3fUD4RbRNz6PI2zi.jpg",
            "id": 22165,
            "original_title": "The Bridge to Nowhere",
            "release_date": "2009-08-17",
            "poster_path": "/crF6sjMoMrxST9tjLL73cdfn9AP.jpg",
            "title": "The Bridge to Nowhere",
            "vote_average": 4.2999999999999998,
            "vote_count": 2
        },
        {
            "backdrop_path": "/vAiURKSJ5lYtz2G2d1L0qDjk7Sv.jpg",
            "id": 9538,
            "original_title": "Scanners",
            "release_date": "1981-01-14",
            "poster_path": "/2EA8DPKTtGqTT61VJTfZM0u41hz.jpg",
            "title": "Scanners",
            "vote_average": 8.5,
            "vote_count": 2
        },
        {
            "backdrop_path": "/oxhnPJzgOPqxoxHpIEJ1InwAyQp.jpg",
            "id": 70006,
            "original_title": "Never Back Down 2: The Beatdown",
            "release_date": "2011-09-13",
            "poster_path": "/6JN5hCsU18iGAeruDmBCaDpcObZ.jpg",
            "title": "Never Back Down 2: The Beatdown",
            "vote_average": 6.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/ipZ2TVKPUz4MTjaPpOAP8yG1Cjy.jpg",
            "id": 64205,
            "original_title": "BKO: Bangkok Knockout",
            "release_date": "2010-12-16",
            "poster_path": "/dRZO7EEVxE2SwYTIxqiRjUP02mO.jpg",
            "title": "BKO: Bangkok Knockout",
            "vote_average": 6.5,
            "vote_count": 2
        },
        {
            "backdrop_path": "/fZqW9wKii0dfBmVWSy6de25JFx0.jpg",
            "id": 9103,
            "original_title": "The Quest",
            "release_date": "1996-08-01",
            "poster_path": "/nQgMrXHYPAxVTYgnbhRGyCLcbHV.jpg",
            "title": "The Quest",
            "vote_average": 6.5,
            "vote_count": 2
        },
        {
            "backdrop_path": "/5X0l0G0S95iTzJMptyIMZO80XNS.jpg",
            "id": 54833,
            "original_title": "The Big Man",
            "release_date": "1991-08-09",
            "poster_path": "/v2RAbH8HJuLdMYnwC9RAFx08aeU.jpg",
            "title": "The Big Man",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/uH4Zl677z6oyvchLIjyHXA0wdz5.jpg",
            "id": 104047,
            "original_title": "Punch",
            "release_date": "2003-02-07",
            "poster_path": "/zECLTYvI1nJKxwFWBwedL3OT1nK.jpg",
            "title": "Punch",
            "vote_average": 3.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/27GgiNN5UVpJYxgxgQ0VZfdU7rR.jpg",
            "id": 14440,
            "original_title": "The Tattooist",
            "release_date": "2008-06-24",
            "poster_path": "/bSCT2vvrp3Tmh3Hkton2ljXam5m.jpg",
            "title": "The Tattooist",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/o6Xif3e9flyYiuel1qGxGMvqKx0.jpg",
            "id": 605,
            "original_title": "The Matrix Revolutions",
            "release_date": "2003-10-27",
            "poster_path": "/sKogjhfs5q3azmpW7DFKKAeLEG8.jpg",
            "title": "The Matrix Revolutions",
            "vote_average": 7.5,
            "vote_count": 78
        },
        {
            "backdrop_path": "/v3gnNqCUu3WGaN931bDaCsmjElr.jpg",
            "id": 16825,
            "original_title": "La coda dello scorpione",
            "release_date": "1971-08-16",
            "poster_path": "/ejihDlbPT7nx9P9FiUaIsdUjcBq.jpg",
            "title": "The Case of the Scorpion's Tail",
            "vote_average": 6.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/9UBtFxBdWDtwMLX5brS45Ryo840.jpg",
            "id": 22538,
            "original_title": "Scott Pilgrim vs. The World",
            "release_date": "2010-08-13",
            "poster_path": "/2B5zjs5E3xerqAyowpw3QcOCyLq.jpg",
            "title": "Scott Pilgrim vs. The World",
            "vote_average": 8.0,
            "vote_count": 60
        },
        {
            "backdrop_path": "/hgfmNKEPVUNKokcwvLCa9gOkELw.jpg",
            "id": 31979,
            "original_title": "Played",
            "release_date": "2006-01-01",
            "poster_path": "/lTAJBzxIkSjMVVn5PjQEEJVMbhY.jpg",
            "title": "Played",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/qDNiKJ46kQ6LHo9eyBK8u2QwRpF.jpg",
            "id": 268,
            "original_title": "Batman",
            "release_date": "1989-06-23",
            "poster_path": "/u782c0lom0YlLwSWX0X2o72OJDT.jpg",
            "title": "Batman",
            "vote_average": 8.3000000000000007,
            "vote_count": 38
        }
    ],
    "total_pages": 5,
    "total_results": 99
}

GET

/3/movie/{id}/reviews

Get the reviews for a particular movie id.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "ed6d3600ec1cf6d4ab30c24f6f33625e"
    Content-Type: application/json
    
{
  "id": 49026,
  "page": 1,
  "results": [
    {
      "id": "5010553819c2952d1b000451",
      "author": "Travis Bell",
      "content": "I felt like this was a tremendous end to Nolan's Batman trilogy. The Dark Knight Rises may very well have been the weakest of all 3 films but when you're talking about a scale of this magnitude, it still makes this one of the best movies I've seen in the past few years.\r\n\r\nI expected a little more _Batman_ than we got (especially with a runtime of 2:45) but while the story around the fall of Bruce Wayne and Gotham City was good I didn't find it amazing. This might be in fact, one of my only criticisms—it was a long movie but still, maybe too short for the story I felt was really being told. I feel confident in saying this big of a story could have been split into two movies.\r\n\r\nThe acting, editing, pacing, soundtrack and overall theme were the same 'as-close-to-perfect' as ever with any of Christopher Nolan's other films. Man does this guy know how to make a movie!\r\n\r\nYou don't have to be a Batman fan to enjoy these movies and I hope any of you who feel this way re-consider. These 3 movies are without a doubt in my mind, the finest display of comic mythology ever told on the big screen. They are damn near perfect.",
      "url": "http://j.mp/QSjAK2"
    },
    {
      "id": "5013bc76760ee372cb00253e",
      "author": "Chris",
      "content": "I personally thought this film is on par if not better than the Dark Knight.\r\n\r\nWhilst some think the film is too long for the story I didn't find this. The length of the film is longer than some (but doesn't feel it), I liked that the film took it's time rather than shoving more elements in it - I think this contributed to the dramatic ending (much like a classical piece of music will be relaxed and calm before the final crescendo).\r\n\r\nAt the end of the day whether you like this film will boil down to if you like films Christopher Nolan has directed and/or you like the Christopher Nolan Batman series so far.\r\n\r\nStupendously good film in my opinion.",
      "url": "http://j.mp/P18dg1"
    },
    {
      "id": "51429a7519c29552e10eba16",
      "author": "GeekMasher",
      "content": "The Dark Knight Rises is one of the best movies to come out in 2012. The story compels you to watch it time and time again. It also has I of, I my opinion, the best bad guys in any movie, Bane! Batman was well played as all ways and the cast where well selected. I think this movie is the best batman to see the light of day or the darkest nights (pun intended).",
      "url": "http://j.mp/19nyIWg"
    }
  ],
  "total_pages": 1,
  "total_results": 3
}

GET

/3/movie/{id}/lists

Get the lists that the movie belongs to.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.
append_to_responseComma separated, any movie method

Response

200 (OK)
    ETag: "ed6d3600ec1cf6d4ab30c24f6f33625e"
    Content-Type: application/json
    
{
    "id": 578,
    "page": 1,
    "results": [
        {
            "description": "Part of the AFI 100 Years… series, AFI's 100 Years…100 Thrills is a list of the top 100 heart-pounding movies in American cinema. The list was unveiled by the American Film Institute on June 12, 2001, during a CBS special hosted by Harrison Ford.",
            "favorite_count": 2,
            "id": "50a510fb760ee34f2c001574",
            "item_count": 100,
            "iso_639_1": "en",
            "name": "AFI's 100 Most Thrilling American Films",
            "poster_path": "/tayO4gCLyEo8Uul8FHkJGy3Kppb.jpg"
        }
    ],
    "total_pages": 1,
    "total_results": 1
}

GET

/3/movie/{id}/changes

Get the changes for a specific movie id.

Changes are grouped by key, and ordered by date in descending order. By default, only the last 24 hours of changes are returned. The maximum number of days that can be returned in a single request is 14. The language is present on fields that are translatable.

Required Parameters
api_key
Optional Parameters
start_dateYYYY-MM-DD
end_dateYYYY-MM-DD

Response

200 (OK)
    ETag: "691e0c90d7869a78ead95cb777b870dd"
    Content-Type: application/json
    
{
    "changes": [
        {
            "key": "general",
            "items": [
                {
                    "id": "507436ef19c2957f27000054",
                    "action": "created",
                    "time": "2012-10-09 14:38:39 UTC"
                }
            ]
        },
        {
            "key": "original_title",
            "items": [
                {
                    "id": "507436ef19c2957f27000055",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": "The Duke"
                }
            ]
        },
        {
            "key": "overview",
            "items": [
                {
                    "id": "507436f619c2957efe000048",
                    "action": "deleted",
                    "time": "2012-10-09 14:38:46 UTC",
                    "iso_639_1": "en",
                    "original_value": "hello hello"
                },
                {
                    "id": "507436ef19c2957f27000056",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "iso_639_1": "en",
                    "value": "hello hello"
                }
            ]
        },
        {
            "key": "imdb_id",
            "items": [
                {
                    "id": "507436ef19c2957f27000057",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": "tt0196516"
                }
            ]
        },
        {
            "key": "budget",
            "items": [
                {
                    "id": "507436ef19c2957f27000058",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": 0
                }
            ]
        },
        {
            "key": "revenue",
            "items": [
                {
                    "id": "507436ef19c2957f27000059",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": 0
                }
            ]
        },
        {
            "key": "translations",
            "items": [
                {
                    "id": "507436ef19c2957f2700005a",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": "en"
                }
            ]
        },
        {
            "key": "runtime",
            "items": [
                {
                    "id": "507436ef19c2957f2700005b",
                    "action": "added",
                    "time": "2012-10-09 14:38:39 UTC",
                    "iso_639_1": "en",
                    "value": 88
                }
            ]
        },
        {
            "key": "adult",
            "items": [
                {
                    "id": "507436ef19c2957f2700005c",
                    "action": "updated",
                    "time": "2012-10-09 14:38:39 UTC",
                    "value": false
                }
            ]
        },
        {
            "key": "spoken_languages",
            "items": [
                {
                    "id": "5074370019c2957efe00004c",
                    "action": "added",
                    "time": "2012-10-09 14:38:56 UTC",
                    "value": "en"
                }
            ]
        },
        {
            "key": "production_countries",
            "items": [
                {
                    "id": "5074370719c2957f2700005e",
                    "action": "added",
                    "time": "2012-10-09 14:39:03 UTC",
                    "value": "US"
                },
                {
                    "id": "5074370419c29518f6000902",
                    "action": "added",
                    "time": "2012-10-09 14:39:00 UTC",
                    "value": "GB"
                }
            ]
        },
        {
            "key": "genres",
            "items": [
                {
                    "id": "5074371019c2955c9c0001ee",
                    "action": "added",
                    "time": "2012-10-09 14:39:12 UTC",
                    "value": {
                        "name": "Family",
                        "id": 10751
                    }
                },
                {
                    "id": "5074371019c2955c9c0001ed",
                    "action": "added",
                    "time": "2012-10-09 14:39:12 UTC",
                    "value": {
                        "name": "Drama",
                        "id": 18
                    }
                },
                {
                    "id": "5074371019c2955c9c0001ec",
                    "action": "added",
                    "time": "2012-10-09 14:39:12 UTC",
                    "value": {
                        "name": "Comedy",
                        "id": 35
                    }
                }
            ]
        },
        {
            "key": "releases",
            "items": [
                {
                    "id": "5074374b19c2957ec200004e",
                    "action": "added",
                    "time": "2012-10-09 14:40:11 UTC",
                    "value": {
                        "iso_3166_1": "US",
                        "release_date": "1999-01-01",
                        "certification": "G",
                        "primary": true
                    }
                }
            ]
        },
        {
            "key": "crew",
            "items": [
                {
                    "id": "507437d319c2957f27000078",
                    "action": "added",
                    "time": "2012-10-09 14:42:27 UTC",
                    "value": {
                        "person_id": 61247,
                        "department": "Sound",
                        "job": "Music"
                    }
                },
                {
                    "id": "507437c719c29518f600091b",
                    "action": "added",
                    "time": "2012-10-09 14:42:15 UTC",
                    "value": {
                        "person_id": 61244,
                        "department": "Production",
                        "job": "Executive Producer"
                    }
                },
                {
                    "id": "507437be19c2955c9c00020c",
                    "action": "added",
                    "time": "2012-10-09 14:42:06 UTC",
                    "value": {
                        "person_id": 94980,
                        "department": "Production",
                        "job": "Executive Producer"
                    }
                },
                {
                    "id": "507437b519c2955c9c000207",
                    "action": "added",
                    "time": "2012-10-09 14:41:57 UTC",
                    "value": {
                        "person_id": 955496,
                        "department": "Production",
                        "job": "Executive Producer"
                    }
                },
                {
                    "id": "507437a919c295228f0012bf",
                    "action": "added",
                    "time": "2012-10-09 14:41:45 UTC",
                    "value": {
                        "person_id": 950332,
                        "department": "Production",
                        "job": "Producer"
                    }
                },
                {
                    "id": "5074379b19c2955c9c000202",
                    "action": "added",
                    "time": "2012-10-09 14:41:31 UTC",
                    "value": {
                        "person_id": 61244,
                        "department": "Writing",
                        "job": "Screenplay"
                    }
                },
                {
                    "id": "5074379119c295228f0012bb",
                    "action": "added",
                    "time": "2012-10-09 14:41:21 UTC",
                    "value": {
                        "person_id": 94980,
                        "department": "Writing",
                        "job": "Screenplay"
                    }
                },
                {
                    "id": "5074378819c2957f2700006a",
                    "action": "added",
                    "time": "2012-10-09 14:41:12 UTC",
                    "value": {
                        "person_id": 1106571,
                        "department": "Writing",
                        "job": "Screenplay"
                    }
                },
                {
                    "id": "5074378119c29518f6000911",
                    "action": "added",
                    "time": "2012-10-09 14:41:05 UTC",
                    "value": {
                        "person_id": 1106570,
                        "department": "Writing",
                        "job": "Story"
                    }
                },
                {
                    "id": "5074377119c295228f0012b4",
                    "action": "added",
                    "time": "2012-10-09 14:40:49 UTC",
                    "value": {
                        "person_id": 105746,
                        "department": "Directing",
                        "job": "Director"
                    }
                }
            ]
        },
        {
            "key": "cast",
            "items": [
                {
                    "id": "5074382d19c2951aaa00055c",
                    "action": "added",
                    "time": "2012-10-09 14:43:57 UTC",
                    "value": {
                        "person_id": 129996,
                        "character": "Basil Rathwood",
                        "order": 9
                    }
                },
                {
                    "id": "5074382719c29518f6000925",
                    "action": "added",
                    "time": "2012-10-09 14:43:51 UTC",
                    "value": {
                        "person_id": 178914,
                        "character": "Lord Huffbottom",
                        "order": 8
                    }
                },
                {
                    "id": "5074381c19c29519b0000505",
                    "action": "added",
                    "time": "2012-10-09 14:43:40 UTC",
                    "value": {
                        "person_id": 165458,
                        "character": "Mrs. Puddingforth",
                        "order": 7
                    }
                },
                {
                    "id": "5074381519c2957efe000061",
                    "action": "added",
                    "time": "2012-10-09 14:43:33 UTC",
                    "value": {
                        "person_id": 41234,
                        "character": "Lady Fautblossom",
                        "order": 6
                    }
                },
                {
                    "id": "5074380e19c2955c9c000221",
                    "action": "added",
                    "time": "2012-10-09 14:43:26 UTC",
                    "value": {
                        "person_id": 186327,
                        "character": "Shamela Stewart",
                        "order": 5
                    }
                },
                {
                    "id": "5074380819c2955c9c00021e",
                    "action": "added",
                    "time": "2012-10-09 14:43:20 UTC",
                    "value": {
                        "person_id": 93035,
                        "character": "Cecil Cavendish",
                        "order": 4
                    }
                },
                {
                    "id": "5074380219c29518f6000921",
                    "action": "added",
                    "time": "2012-10-09 14:43:14 UTC",
                    "value": {
                        "person_id": 98429,
                        "character": "Florian",
                        "order": 3
                    }
                },
                {
                    "id": "507437fc19c295228f0012ca",
                    "action": "added",
                    "time": "2012-10-09 14:43:08 UTC",
                    "value": {
                        "person_id": 149837,
                        "character": "Charlotte",
                        "order": 2
                    }
                },
                {
                    "id": "507437f419c2957f2700007e",
                    "action": "added",
                    "time": "2012-10-09 14:43:00 UTC",
                    "value": {
                        "person_id": 1751,
                        "character": "Clive Chives",
                        "order": 1
                    }
                },
                {
                    "id": "507437ec19c2957ec2000063",
                    "action": "added",
                    "time": "2012-10-09 14:42:52 UTC",
                    "value": {
                        "person_id": 12642,
                        "character": "The Duke",
                        "order": 0
                    }
                }
            ]
        }
    ]
}

GET

/3/movie/latest

Get the latest movie id.

Required Parameters
api_key

Response

200 (OK)
    ETag: "395a404fd5fdecc5701224b91a49e592"
    Content-Type: application/json
    
{
    "adult": false,
    "backdrop_path": null,
    "belongs_to_collection": null,
    "budget": 0,
    "genres": [],
    "homepage": null,
    "id": 133255,
    "imdb_id": "tt0031406",
    "original_title": "Harlem Rides the Range",
    "overview": null,
    "popularity": 0.0,
    "poster_path": null,
    "production_companies": [
        {
            "name": "Hollywood Pictures Corporation",
            "id": 10747
        }
    ],
    "production_countries": [
        {
            "iso_3166_1": "US",
            "name": "United States of America"
        }
    ],
    "release_date": "1939-02-01",
    "revenue": 0,
    "runtime": null,
    "spoken_languages": [
        {
            "iso_639_1": "en",
            "name": "English"
        }
    ],
    "tagline": null,
    "title": "Harlem Rides the Range",
    "vote_average": 0.0,
    "vote_count": 0
}

GET

/3/movie/upcoming

Get the list of upcoming movies. This list refreshes every day. The maximum number of items this list will include is 100.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.

Response

200 (OK)
    ETag: "6062d4825a2cd1efa5a7757c91a5f7a8"
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/tOjAcMiF1fysNtV9csAmOblrKSC.jpg",
            "id": 53100,
            "original_title": "Bringing Up Bobby",
            "release_date": "2011-11-25",
            "poster_path": "/rF6hzUnfp0iFDDi8rSSpY0z2pmk.jpg",
            "title": "Bringing Up Bobby",
            "vote_average": 7.0,
            "vote_count": 2
        },
        {
            "backdrop_path": null,
            "id": 121691,
            "original_title": "Hellbound?",
            "release_date": "2012-09-28",
            "poster_path": "/yv3JWFCDpBe9Upn9lF4J2xqlbME.jpg",
            "title": "Hellbound?",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/AhHy2Kyj5ikvy8cTBM2EQenIC0Y.jpg",
            "id": 76492,
            "original_title": "Hotel Transylvania",
            "release_date": "2012-09-28",
            "poster_path": "/8EOM4vHOdTZo4BOdROKFMPttK7Z.jpg",
            "title": "Hotel Transylvania",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/3HSb5LjnrgP11dF974Z1OfiLtUO.jpg",
            "id": 59967,
            "original_title": "Looper",
            "release_date": "2012-09-28",
            "poster_path": "/7jRzJ0OH6GsbpMEwyYdJ5krEJXO.jpg",
            "title": "Looper",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 84318,
            "original_title": "The Other Dream Team",
            "release_date": "2012-09-28",
            "poster_path": "/tUFUA6UWe3jIHrmhMkBdDNyibzJ.jpg",
            "title": "The Other Dream Team",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/vcLqVuSMx7dVfuOVKd4IL4RcMsa.jpg",
            "id": 114150,
            "original_title": "Pitch Perfect",
            "release_date": "2012-10-05",
            "poster_path": "/pkZVHqMqFTfuYUrHG37FTC5REjD.jpg",
            "title": "Pitch Perfect",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/rEAuvuZLher0Jt9xGT3b90Yx5Zq.jpg",
            "id": 32985,
            "original_title": "Solomon Kane",
            "release_date": "2012-09-28",
            "poster_path": "/n5SHBE4ulsDDVa9gYttUYwp1VZU.jpg",
            "title": "Solomon Kane",
            "vote_average": 7.2000000000000002,
            "vote_count": 20
        },
        {
            "backdrop_path": "/mmTIlUkf1vjn8zDCyZ6XpFqPLZd.jpg",
            "id": 82631,
            "original_title": "Won't Back Down",
            "release_date": "2012-09-28",
            "poster_path": "/mmriKke2koxbnqvFPLazB0gWAjb.jpg",
            "title": "Won't Back Down",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/aPNIBz8IlwItnGqFZcvYith9IQJ.jpg",
            "id": 79697,
            "original_title": "Butter",
            "release_date": "2012-03-16",
            "poster_path": "/f4vDFX6wZ75BKQpXs2mrOQpfbbS.jpg",
            "title": "Butter",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 84192,
            "original_title": "Escape Fire: The Fight to Rescue American Healthcare",
            "release_date": "2012-10-05",
            "poster_path": "/5sOvUyDXkm7P0QW6aYFJNosdeUD.jpg",
            "title": "Escape Fire: The Fight to Rescue American Healthcare",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/L4SsHfdYkuFNgpjYj8ByjJRAcI.jpg",
            "id": 62214,
            "original_title": "Frankenweenie",
            "release_date": "2012-10-05",
            "poster_path": "/sn5V6z2RRKujHGthAGjdl3Evzj0.jpg",
            "title": "Frankenweenie",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 84284,
            "original_title": "The House I Live In",
            "release_date": "2012-10-05",
            "poster_path": "/c7eFVXTU34xHnl261KAPJtiK1px.jpg",
            "title": "The House I Live In",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 89008,
            "original_title": "The Oranges",
            "release_date": "2012-10-05",
            "poster_path": "/dzMXyP1n70f8Xq4FU5ZLh6FXKI6.jpg",
            "title": "The Oranges",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 82390,
            "original_title": "The Paperboy",
            "release_date": "2012-11-24",
            "poster_path": "/qzL5f0fGXw8SmIfsiTvzCm2jZEq.jpg",
            "title": "The Paperboy",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 82675,
            "original_title": "Taken 2",
            "release_date": "2012-10-05",
            "poster_path": "/yA2Ly2CYSaK1Wljzmz1SKPpZ1RH.jpg",
            "title": "Taken 2",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/1D2HsFUey1BoiM16bjOEferT6yG.jpg",
            "id": 84348,
            "original_title": "V/H/S",
            "release_date": "2012-10-05",
            "poster_path": "/e2wdyen1CdKPGrTKoxLvDMffyM1.jpg",
            "title": "V/H/S",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/rbO1MB4wTJk4eFyXKRjDejHtCXV.jpg",
            "id": 9364,
            "original_title": "Wuthering Heights",
            "release_date": "2012-04-09",
            "poster_path": "/7xToLdWDxRJPWLin5vUWdcaXYUs.jpg",
            "title": "Wuthering Heights",
            "vote_average": 5.5999999999999996,
            "vote_count": 5
        },
        {
            "backdrop_path": "/rkVH5HFCbzgqU3TjDikzB8yi6yU.jpg",
            "id": 68734,
            "original_title": "Argo",
            "release_date": "2012-10-12",
            "poster_path": "/pfe5X0mi7TFKaWtQkXonjrGwLCr.jpg",
            "title": "Argo",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/aPNrZTGGj4uXIdcOIc5eNtsEVlc.jpg",
            "id": 68450,
            "original_title": "The Art of Flight",
            "release_date": "2011-09-08",
            "poster_path": "/2WvlTijDZX8NciqLyRKcLACxPF5.jpg",
            "title": "The Art of Flight",
            "vote_average": 9.0,
            "vote_count": 3
        },
        {
            "backdrop_path": null,
            "id": 95571,
            "original_title": "Gayby",
            "release_date": "2012-10-12",
            "poster_path": "/kif0M8G7mwNkOSDvljNIMEsqxGV.jpg",
            "title": "Gayby",
            "vote_average": 0.0,
            "vote_count": 0
        }
    ],
    "total_pages": 5,
    "total_results": 100
}

GET

/3/movie/now_playing

Get the list of movies playing in theatres. This list refreshes every day. The maximum number of items this list will include is 100.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.

Response

200 (OK)
    ETag: "d69629e64c4236ba3a7a9096fa6ed00c"
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": "/rCMVMFlj5uDnyVCn8ROVZBnORMT.jpg",
            "id": 68722,
            "original_title": "The Master",
            "release_date": "2012-09-14",
            "poster_path": "/2OxSYeydFJo7QToMGCs3cLKegk9.jpg",
            "title": "The Master",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/uv5BRIaJKfcPBPEBV8qfTjD6PuY.jpg",
            "id": 12,
            "original_title": "Finding Nemo",
            "release_date": "2003-05-30",
            "poster_path": "/zjqInUwldOBa0q07fOyohYCWxWX.jpg",
            "title": "Finding Nemo",
            "vote_average": 8.6999999999999993,
            "vote_count": 41
        },
        {
            "backdrop_path": "/h4ApNjVe5z1lZzqC7i4r1jZqgha.jpg",
            "id": 77883,
            "original_title": "The Possession",
            "release_date": "2012-08-31",
            "poster_path": "/wHfZNSQvejeviOTdMiiC4KScYBo.jpg",
            "title": "The Possession",
            "vote_average": 7.5,
            "vote_count": 2
        },
        {
            "backdrop_path": "/tH5oFO4L3NblqiOaOb70G9AbGtB.jpg",
            "id": 83686,
            "original_title": "The Words",
            "release_date": "2012-09-07",
            "poster_path": "/5RnIpEh829pZJyEuBz8YoP5ZR8J.jpg",
            "title": "The Words",
            "vote_average": 6.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/3ldp56QQjG1fxO3i5Kx792nlmn4.jpg",
            "id": 82633,
            "original_title": "Lawless",
            "release_date": "2012-08-31",
            "poster_path": "/b8UePdArknO63GSNwEUC9rj6YMe.jpg",
            "title": "Lawless",
            "vote_average": 7.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/pIjnoUnXdLpROFzIRPNziPzgBUp.jpg",
            "id": 76163,
            "original_title": "The Expendables 2",
            "release_date": "2012-08-17",
            "poster_path": "/kv1VxoO2Z7Pl1YoItBkvvN5Mt72.jpg",
            "title": "The Expendables 2",
            "vote_average": 8.9000000000000004,
            "vote_count": 12
        },
        {
            "backdrop_path": "/pGh7C7FL2uT8f0bBda2VCPYy0kY.jpg",
            "id": 71679,
            "original_title": "Resident Evil: Retribution",
            "release_date": "2012-09-14",
            "poster_path": "/qSVQSUKv6pdJKdXtPz4PJAcGxkv.jpg",
            "title": "Resident Evil: Retribution",
            "vote_average": 8.0,
            "vote_count": 2
        },
        {
            "backdrop_path": "/hH5nqzF6pOHBfbdte2pXfnCysWR.jpg",
            "id": 71864,
            "original_title": "The Odd Life of Timothy Green",
            "release_date": "2012-08-15",
            "poster_path": "/ee6rNeZi4OwItD2f7JdlaKSRXla.jpg",
            "title": "The Odd Life of Timothy Green",
            "vote_average": 6.0,
            "vote_count": 1
        },
        {
            "backdrop_path": null,
            "id": 126509,
            "original_title": "2016: Obama's America",
            "release_date": "2012-07-13",
            "poster_path": "/nV6WbxQ7GjalTQVQl5lK7GINRQA.jpg",
            "title": "2016: Obama's America",
            "vote_average": 9.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/xX3FLdfmNyQ391NQwr771cdKxZW.jpg",
            "id": 49040,
            "original_title": "The Bourne Legacy",
            "release_date": "2012-08-10",
            "poster_path": "/dulGeTv4d5qwF0lSxQc74nX7ksE.jpg",
            "title": "The Bourne Legacy",
            "vote_average": 7.9000000000000004,
            "vote_count": 5
        },
        {
            "backdrop_path": "/zTIJwzsBLt51YJK5naJKI0rTBgR.jpg",
            "id": 77953,
            "original_title": "The Campaign",
            "release_date": "2012-08-10",
            "poster_path": "/4LgrHV3Z5O5sh2lbqjf8BUiM0uF.jpg",
            "title": "The Campaign",
            "vote_average": 6.5,
            "vote_count": 1
        },
        {
            "backdrop_path": null,
            "id": 130774,
            "original_title": "Last Ounce of Courage",
            "release_date": "2012-09-14",
            "poster_path": "/5j82xS0H9Ggohhw58ux4SgN3c4v.jpg",
            "title": "Last Ounce of Courage",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/7tkR2XE6Lh3BPufQI3JjnzW3n92.jpg",
            "id": 82696,
            "original_title": "Hope Springs",
            "release_date": "2012-08-08",
            "poster_path": "/9L54gLpKmftxfXxWD5fIslk1Rpy.jpg",
            "title": "Hope Springs",
            "vote_average": 3.7999999999999998,
            "vote_count": 2
        },
        {
            "backdrop_path": "/nLMfRZQPJFCFwB5YdLnPBCj2uho.jpg",
            "id": 77174,
            "original_title": "ParaNorman",
            "release_date": "2012-08-17",
            "poster_path": "/AtenrJ8HptJOOtvJJwxu4nbo3es.jpg",
            "title": "ParaNorman",
            "vote_average": 8.8000000000000007,
            "vote_count": 3
        },
        {
            "backdrop_path": "/abu59gFNJwru0sUEMkOHctSRgSh.jpg",
            "id": 77948,
            "original_title": "The Cold Light of Day",
            "release_date": "2012-09-07",
            "poster_path": "/zXhphNKS56VQbVJXqk3OMrjtNNc.jpg",
            "title": "The Cold Light of Day",
            "vote_average": 7.5,
            "vote_count": 2
        },
        {
            "backdrop_path": "/lcvuQDedwXGtBOJkte0En7kamO.jpg",
            "id": 49026,
            "original_title": "The Dark Knight Rises",
            "release_date": "2012-07-20",
            "poster_path": "/79iOLF6sCNfHoQ7hNofApAwdzoY.jpg",
            "title": "The Dark Knight Rises",
            "vote_average": 8.8000000000000007,
            "vote_count": 67
        },
        {
            "backdrop_path": "/f8LPFOnlz8Ia0wzVUUk8REeDfNj.jpg",
            "id": 49526,
            "original_title": "Premium Rush",
            "release_date": "2012-08-24",
            "poster_path": "/tZ5M0jvGJ2lj4z9iguvqRqvI5Wp.jpg",
            "title": "Premium Rush",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/6zzRMEAFjnthrIgPXd0tmxlFwMp.jpg",
            "id": 82650,
            "original_title": "Diary of a Wimpy Kid: Dog Days",
            "release_date": "2012-08-03",
            "poster_path": "/o2YcOotynpXiEVoekvA9LdCRueu.jpg",
            "title": "Diary of a Wimpy Kid: Dog Days",
            "vote_average": 3.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/eMEYWaxrNryHJSmWYDwyPONWfZt.jpg",
            "id": 88036,
            "original_title": "Sparkle",
            "release_date": "2012-08-17",
            "poster_path": "/xrFeA65IhfS0GhfcBEcwx3E1Sho.jpg",
            "title": "Sparkle",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/jSoNOwg3uVPtDeL6BIB8CJ625j4.jpg",
            "id": 109513,
            "original_title": "Hit & Run",
            "release_date": "2012-08-22",
            "poster_path": "/74yocWJsgcRACzedKZ2LYI1D1pU.jpg",
            "title": "Hit & Run",
            "vote_average": 6.0,
            "vote_count": 1
        }
    ],
    "total_pages": 4,
    "total_results": 62
}

GET

/3/movie/popular

Get the list of popular movies on The Movie Database. This list refreshes every day.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.

Response

200 (OK)
    ETag: "cb5f7598ec93dd70035f93953954d611"
    Content-Type: application/json
    
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/5bKy4O0WQTa3MG2wPWViUNUTIEG.jpg",
      "id": 82992,
      "original_title": "Fast & Furious 6",
      "release_date": "2013-05-24",
      "poster_path": "/3Izae8UATwSHizQiEVZEWf53wjM.jpg",
      "popularity": 56.5133968700669,
      "title": "Fast & Furious 6",
      "vote_average": 7.3,
      "vote_count": 13
    },
    {
      "adult": false,
      "backdrop_path": "/n9X2DKItL3V0yq1q1jrk8z5UAki.jpg",
      "id": 68721,
      "original_title": "Iron Man 3",
      "release_date": "2013-05-03",
      "poster_path": "/kC4NM99bJ5Xq03O6XQ6602GKRsi.jpg",
      "popularity": 55.118598761825,
      "title": "Iron Man 3",
      "vote_average": 7.3,
      "vote_count": 79
    },
    {
      "adult": false,
      "backdrop_path": "/22DQWwjaam1LHTAEapxO2Wg7s2H.jpg",
      "id": 47964,
      "original_title": "A Good Day to Die Hard",
      "release_date": "2013-02-14",
      "poster_path": "/7JKli6FqxK6kEsNRUW8JVGmGSNI.jpg",
      "popularity": 53.9077809585504,
      "title": "A Good Day to Die Hard",
      "vote_average": 6.0,
      "vote_count": 32
    },
    {
      "adult": false,
      "backdrop_path": "/rRK0LRpvRI2didoMaBFt1GqxjEy.jpg",
      "id": 134411,
      "original_title": "Snitch",
      "release_date": "2013-02-22",
      "poster_path": "/vWRivfYs8dMJnFESCKOqXcEUUYN.jpg",
      "popularity": 48.6472963993062,
      "title": "Snitch",
      "vote_average": 7.7,
      "vote_count": 42
    },
    {
      "adult": false,
      "backdrop_path": "/jjAq3tCezdlQduusgtMhpY2XzW0.jpg",
      "id": 49051,
      "original_title": "The Hobbit: An Unexpected Journey",
      "release_date": "2012-12-12",
      "poster_path": "/h1XjBJoWdOh8aegBoVYKgABQZSL.jpg",
      "popularity": 47.5020577063227,
      "title": "The Hobbit: An Unexpected Journey",
      "vote_average": 6.7,
      "vote_count": 183
    },
    {
      "adult": false,
      "backdrop_path": "/4cCQkOv4GfQoTtDzHl54KS3S39N.jpg",
      "id": 68728,
      "original_title": "Oz: The Great and Powerful",
      "release_date": "2013-03-08",
      "poster_path": "/693zyX9HmZtqoDNLL1QPjMZHdq8.jpg",
      "popularity": 45.8321401309985,
      "title": "Oz: The Great and Powerful",
      "vote_average": 7.6,
      "vote_count": 34
    },
    {
      "adult": false,
      "backdrop_path": "/4wieJ74tXkZDMiiwJ6yMr7LgSpR.jpg",
      "id": 60304,
      "original_title": "Hansel & Gretel: Witch Hunters",
      "release_date": "2013-01-25",
      "poster_path": "/yDIVWFJqFLIeS8E1R6GG9uwPMS3.jpg",
      "popularity": 32.6524484520598,
      "title": "Hansel & Gretel: Witch Hunters",
      "vote_average": 7.5,
      "vote_count": 34
    },
    {
      "adult": false,
      "backdrop_path": "/u4r1VxLPBZXGHMxUnckjes7RWVD.jpg",
      "id": 82654,
      "original_title": "Warm Bodies",
      "release_date": "2013-02-01",
      "poster_path": "/7tv6NHYiYeskLJzGamxtknC3mPt.jpg",
      "popularity": 30.5946592068883,
      "title": "Warm Bodies",
      "vote_average": 7.6,
      "vote_count": 30
    },
    {
      "adult": false,
      "backdrop_path": "/qUcmEqnzIwlwZxSyTf3WliSfAjJ.jpg",
      "id": 68718,
      "original_title": "Django Unchained",
      "release_date": "2012-12-25",
      "poster_path": "/hCk3wAojAgUa9Ey2tzutt8rzmgP.jpg",
      "popularity": 29.1149763813121,
      "title": "Django Unchained",
      "vote_average": 7.2,
      "vote_count": 159
    },
    {
      "adult": false,
      "backdrop_path": "/ns0IojuqJe24AHTxe8RVcWJUCDM.jpg",
      "id": 54138,
      "original_title": "Star Trek Into Darkness",
      "release_date": "2013-05-16",
      "poster_path": "/bnttrKDyTUerPIGUXYX79CRWWUF.jpg",
      "popularity": 27.6521203700075,
      "title": "Star Trek Into Darkness",
      "vote_average": 8.5,
      "vote_count": 16
    },
    {
      "adult": false,
      "backdrop_path": "/glJAmPmXVBDpP0q2Z7yAs9q7Jr8.jpg",
      "id": 119283,
      "original_title": "Parker",
      "release_date": "2013-01-25",
      "poster_path": "/dbWSgbfxxxLsGipXYuBYi4k4FTA.jpg",
      "popularity": 24.2810191038002,
      "title": "Parker",
      "vote_average": 5.9,
      "vote_count": 9
    },
    {
      "adult": false,
      "backdrop_path": "/y6a2HpdZ1MlsmAZVTn3XeDoyIka.jpg",
      "id": 109431,
      "original_title": "Identity Thief",
      "release_date": "2013-02-07",
      "poster_path": "/lOF4rI6SxgRsVLW8odsauqnhB9Z.jpg",
      "popularity": 22.3382127204636,
      "title": "Identity Thief",
      "vote_average": 4.9,
      "vote_count": 17
    },
    {
      "adult": false,
      "backdrop_path": "/gIfO0pjuzOv0qun6VOuifa0c6OY.jpg",
      "id": 13804,
      "original_title": "Fast And Furious",
      "release_date": "2009-03-11",
      "poster_path": "/ft8IqAGFs3V7i87z0t0EVRUjK1p.jpg",
      "popularity": 20.1446806145099,
      "title": "Fast And Furious",
      "vote_average": 7.7,
      "vote_count": 41
    },
    {
      "adult": false,
      "backdrop_path": "/pAIeqf7NpAE6EL0ZkIcaRkwcPyz.jpg",
      "id": 75780,
      "original_title": "Jack Reacher",
      "release_date": "2012-12-21",
      "poster_path": "/38bmEXmuJuInLs9dwfgOGCHmZ7l.jpg",
      "popularity": 19.1763149832215,
      "title": "Jack Reacher",
      "vote_average": 7.3,
      "vote_count": 54
    },
    {
      "adult": false,
      "backdrop_path": "/lmIqH8Qsv3IvDg0PTFUuVr89eBT.jpg",
      "id": 9799,
      "original_title": "The Fast and the Furious",
      "release_date": "2001-06-17",
      "poster_path": "/3cucyEuLOOjjJ8nem5facsTEy68.jpg",
      "popularity": 18.1965285044048,
      "title": "The Fast and the Furious",
      "vote_average": 7.9,
      "vote_count": 46
    },
    {
      "adult": false,
      "backdrop_path": "/nL1Q0micYpF5nNkaI2ZNeLuOLGZ.jpg",
      "id": 51497,
      "original_title": "Fast Five",
      "release_date": "2011-04-28",
      "poster_path": "/cA81CI8odKv5KHRUUzJbj83yN7c.jpg",
      "popularity": 17.4500929305629,
      "title": "Fast Five",
      "vote_average": 8.0,
      "vote_count": 51
    },
    {
      "adult": false,
      "backdrop_path": "/hbn46fQaRmlpBuUrEiFqv0GDL6Y.jpg",
      "id": 24428,
      "original_title": "The Avengers",
      "release_date": "2012-05-04",
      "poster_path": "/cezWGskPY5x7GaglTTRN4Fugfb8.jpg",
      "popularity": 17.2196799692765,
      "title": "The Avengers",
      "vote_average": 7.4,
      "vote_count": 273
    },
    {
      "adult": false,
      "backdrop_path": null,
      "id": 168259,
      "original_title": "Fast & Furious 7",
      "release_date": "2014-07-11",
      "poster_path": "/iYDlZgWg8ltTwDEcsvnLQfYkJKj.jpg",
      "popularity": 16.8820145528661,
      "title": "Fast & Furious 7",
      "vote_average": 0.0,
      "vote_count": 0
    },
    {
      "adult": false,
      "backdrop_path": "/g62SFRNTiVK2e5FMqivziQ4SX6J.jpg",
      "id": 109421,
      "original_title": "Side Effects",
      "release_date": "2013-02-08",
      "poster_path": "/ttD69Yhh2BV1WVqr27NRbF8ubOW.jpg",
      "popularity": 16.6879135174643,
      "title": "Side Effects",
      "vote_average": 5.1,
      "vote_count": 17
    },
    {
      "adult": false,
      "backdrop_path": "/7ObVZtidm7uGWPrNkep2kf2wUPN.jpg",
      "id": 106021,
      "original_title": "The Expatriate",
      "release_date": "2012-09-26",
      "poster_path": "/EWFPlsGbwFgTgnPfJe93OXdCI6.jpg",
      "popularity": 16.338470937008,
      "title": "Erased",
      "vote_average": 5.7,
      "vote_count": 10
    }
  ],
  "total_pages": 6142,
  "total_results": 122821
}

GET

/3/movie/top_rated

Get the list of top rated movies. By default, this list will only include movies that have 10 or more votes. This list refreshes every day.

Required Parameters
api_key
Optional Parameters
page
languageISO 639-1 code.

Response

200 (OK)
    ETag: "6c0d967beb5470908268734d7c112ea0"
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "backdrop_path": null,
            "id": 132179,
            "original_title": "The Prince of Town",
            "release_date": "2011-09-01",
            "poster_path": "/cvSTHeXmNOVcS5Vc90yzuYZApw5.jpg",
            "title": "The Prince of Town",
            "vote_average": 9.3000000000000007,
            "vote_count": 12
        },
        {
            "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg",
            "id": 238,
            "original_title": "The Godfather",
            "release_date": "1972-03-24",
            "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg",
            "title": "The Godfather",
            "vote_average": 9.1999999999999993,
            "vote_count": 125
        },
        {
            "backdrop_path": "/xa2rJIU0Bs56b9ek9ZuAcRe2S2k.jpg",
            "id": 914,
            "original_title": "The Great Dictator",
            "release_date": "1940-10-15",
            "poster_path": "/Wk1ideXjlGYVCtRwOiLmuC9uyu.jpg",
            "title": "The Great Dictator",
            "vote_average": 9.1999999999999993,
            "vote_count": 16
        },
        {
            "backdrop_path": null,
            "id": 132180,
            "original_title": "Stainless Assassin",
            "release_date": "2010-05-15",
            "poster_path": "/vdiW5DLX9zau25bMAsetPqpF38s.jpg",
            "title": "Stainless Assassin",
            "vote_average": 9.1999999999999993,
            "vote_count": 12
        },
        {
            "backdrop_path": null,
            "id": 132181,
            "original_title": "The Oval Portrait",
            "release_date": "2011-08-22",
            "poster_path": "/8FDIBr9v1Z9ty5lP6uoWV6uaeL5.jpg",
            "title": "The Oval Portrait",
            "vote_average": 9.1999999999999993,
            "vote_count": 12
        },
        {
            "backdrop_path": "/7u3pxc0K1wx32IleAkLv78MKgrw.jpg",
            "id": 603,
            "original_title": "The Matrix",
            "release_date": "1999-03-31",
            "poster_path": "/gynBNzwyaHKtXqlEKKLioNkjKgN.jpg",
            "title": "The Matrix",
            "vote_average": 9.0999999999999996,
            "vote_count": 248
        },
        {
            "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "id": 550,
            "original_title": "Fight Club",
            "release_date": "1999-10-15",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "title": "Fight Club",
            "vote_average": 9.0999999999999996,
            "vote_count": 174
        },
        {
            "backdrop_path": "/d9AqtruwS8nljKjL5aYzM42hQJr.jpg",
            "id": 280,
            "original_title": "Terminator 2: Judgment Day",
            "release_date": "1991-07-01",
            "poster_path": "/2y4dmgWYRMYXdD1UyJVcn2HSd1D.jpg",
            "title": "Terminator 2: Judgment Day",
            "vote_average": 9.0999999999999996,
            "vote_count": 106
        },
        {
            "backdrop_path": "/xGC2fY5KFmtuXnsuQwYQKFOLZFy.jpg",
            "id": 429,
            "original_title": "The Good, the Bad and the Ugly",
            "release_date": "1966-12-23",
            "poster_path": "/4Mfp4ouiGPmYGVw8J9pa3q7de5b.jpg",
            "title": "The Good, the Bad and the Ugly",
            "vote_average": 9.0999999999999996,
            "vote_count": 94
        },
        {
            "backdrop_path": "/jWDegvAE8XO2XDUHP9eQYlepJv1.jpg",
            "id": 240,
            "original_title": "The Godfather: Part II",
            "release_date": "1974-12-20",
            "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg",
            "title": "The Godfather: Part II",
            "vote_average": 9.0999999999999996,
            "vote_count": 61
        },
        {
            "backdrop_path": "/3R6vDW1yBBzejsma8SzzWuxj2AE.jpg",
            "id": 311,
            "original_title": "Once Upon a Time in America",
            "release_date": "1984-02-17",
            "poster_path": "/fqP3Q7DWMFqW7mh11hWXbNwN9rz.jpg",
            "title": "Once Upon a Time in America",
            "vote_average": 9.0999999999999996,
            "vote_count": 34
        },
        {
            "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg",
            "id": 278,
            "original_title": "The Shawshank Redemption",
            "release_date": "1994-09-14",
            "poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg",
            "title": "The Shawshank Redemption",
            "vote_average": 9.0,
            "vote_count": 173
        },
        {
            "backdrop_path": "/bwSuLfJ0V15qWT7K5P28mFhP9rD.jpg",
            "id": 11,
            "original_title": "Star Wars: Episode IV - A New Hope",
            "release_date": "1977-05-25",
            "poster_path": "/tvSlBzAdRE29bZe5yYWrJ2ds137.jpg",
            "title": "Star Wars: Episode IV - A New Hope",
            "vote_average": 9.0,
            "vote_count": 149
        },
        {
            "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg",
            "id": 78,
            "original_title": "Blade Runner",
            "release_date": "1982-06-25",
            "poster_path": "/ewq1lwhOT8GqBcQH1w8D1BagwTh.jpg",
            "title": "Blade Runner",
            "vote_average": 9.0,
            "vote_count": 147
        },
        {
            "backdrop_path": "/AkE7LQs2hPMG5tpWYcum847Knre.jpg",
            "id": 1891,
            "original_title": "Star Wars: Episode V - The Empire Strikes Back",
            "release_date": "1980-05-21",
            "poster_path": "/dKz98Lyda4m1QaUUUsUpXFpYCXN.jpg",
            "title": "Star Wars: Episode V - The Empire Strikes Back",
            "vote_average": 9.0,
            "vote_count": 144
        },
        {
            "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg",
            "id": 122,
            "original_title": "The Lord of the Rings: The Return of the King",
            "release_date": "2003-12-17",
            "poster_path": "/j6NCjU6Zh7SkfIeN5zDaoTmBn4m.jpg",
            "title": "The Lord of the Rings: The Return of the King",
            "vote_average": 9.0,
            "vote_count": 135
        },
        {
            "backdrop_path": "/55LP95aktZlGn2uRKO15qEUrIfU.jpg",
            "id": 105,
            "original_title": "Back to the Future",
            "release_date": "1985-07-03",
            "poster_path": "/pTpxQB1N0waaSc3OSn0e9oc8kx9.jpg",
            "title": "Back to the Future",
            "vote_average": 9.0,
            "vote_count": 110
        },
        {
            "backdrop_path": "/mGN0lH2phYfesyEVqP2xvGUaxAQ.jpg",
            "id": 101,
            "original_title": "Léon",
            "release_date": "1994-09-14",
            "poster_path": "/alGc7hDKHLQ2m7Ic41LSp5hbIpI.jpg",
            "title": "Leon: The Professional",
            "vote_average": 9.0,
            "vote_count": 86
        },
        {
            "backdrop_path": "/sovszUGOwcCfdcfg2xYGMnsRryf.jpg",
            "id": 8587,
            "original_title": "The Lion King",
            "release_date": "1994-06-24",
            "poster_path": "/pM4w7A48OcdHlKweMef8HV2EfFD.jpg",
            "title": "The Lion King",
            "vote_average": 9.0,
            "vote_count": 69
        },
        {
            "backdrop_path": "/fRQATr704bMpLc5Skzpj3V9b2iW.jpg",
            "id": 197,
            "original_title": "Braveheart",
            "release_date": "1995-05-24",
            "poster_path": "/4T4xQJXSdTNbzUrlT6Eh13kiy5H.jpg",
            "title": "Braveheart",
            "vote_average": 9.0,
            "vote_count": 65
        }
    ],
    "total_pages": 62,
    "total_results": 1232
}

GET

/3/movie/{id}/account_states

This method lets users get the status of whether or not the movie has been rated or added to their favourite or watch lists. A valid session id is required.

Required Parameters
api_key
session_id

Response

200 (OK)
    ETag: "6c0d967beb5470908268734d7c112ea0"
    Content-Type: application/json
    
{
  "id": 550,
  "favorite": false,
  "rated": {
    "value": 7.5
  },
  "watchlist": false
}

POST

/3/movie/{id}/rating

This method lets users rate a movie. A valid session id or guest session id is required.

Required Parameters
api_key
session_id
guest_session_id
Required JSON Body
value

Response

200 (OK)
    Content-Type: application/json
    
{
    "status_code": 1,
    "status_message": "Success"
}

Collections

GET

/3/collection/{id}

Get the basic collection information for a specific collection id. You can get the ID needed for this method by making a /movie/{id} request and paying attention to the belongs_to_collection hash.

Movie parts are not sorted in any particular order. If you would like to sort them yourself you can use the provided release_date.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.
append_to_responseComma separated, any collection method

Response

200 (OK)
    ETag: "087ff1516832c736d3c736c38b2bd96f"
    Content-Type: application/json
    
{
  "backdrop_path": "/mOTtuakUTb1qY6jG6lzMfjdhLwc.jpg",
  "id": 10,
  "name": "Star Wars Collection",
  "parts": [{
      "backdrop_path": "/mOTtuakUTb1qY6jG6lzMfjdhLwc.jpg",
      "id": 11,
      "poster_path": "/qoETrQ73Jbd2LDN8EUfNgUerhzG.jpg",
      "release_date": "1977-12-27",
      "title": "Star Wars: Episode IV: A New Hope"
  },
  {
      "backdrop_path": null,
      "id": 1891,
      "poster_path": null,
      "release_date": "1980-05-21",
      "title": "Star Wars: Episode V: The Empire Strikes Back"
  },
  {
      "backdrop_path": null,
      "id": 1892,
      "poster_path": null,
      "release_date": "1983-05-25",
      "title": "Star Wars: Episode VI: Return of the Jedi"
  },
  {
      "backdrop_path": null,
      "id": 1893,
      "poster_path": null,
      "release_date": "1999-05-19",
      "title": "Star Wars: Episode I: The Phantom Menace"
  },
  {
      "backdrop_path": null,
      "id": 1894,
      "poster_path": null,
      "release_date": "2002-05-16",
      "title": "Star Wars: Episode II: Attack of the Clones"
  },
  {
      "backdrop_path": null,
      "id": 1895,
      "poster_path": null,
      "release_date": "2005-05-19",
      "title": "Star Wars: Episode III: Revenge of the Sith"
  }],
  "poster_path": "/6rddZZpxMQkGlpQYVVxb2LdQRI3.jpg"
}

GET

/3/collection/{id}/images

Get all of the images for a particular collection by collection id.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.
append_to_responseComma separated, any collection method

Response

200 (OK)
    ETag: "8672576f48eb67cc63e87d3661486671"
    Content-Type: application/json
    
{
  "backdrops": [{
    "aspect_ratio": 1.78,
    "file_path": "/mOTtuakUTb1qY6jG6lzMfjdhLwc.jpg",
    "height": 1080,
    "iso_639_1": null,
    "width": 1920
  },
  {
    "aspect_ratio": 1.78,
    "file_path": "/6dSG8wQBuZ9s0HhKspneFFZI58j.jpg",
    "height": 1080,
    "iso_639_1": null,
    "width": 1920
  }],
  "id": 11,
  "posters": [{
    "aspect_ratio": 0.67,
    "file_path": "/qoETrQ73Jbd2LDN8EUfNgUerhzG.jpg",
    "height": 1500,
    "iso_639_1": "en",
    "width": 1000
  },
  {
    "aspect_ratio": 0.67,
    "file_path": "/fiPNADHtDsOBvOIye79cLui3aEQ.jpg",
    "height": 1500,
    "iso_639_1": null,
    "width": 1000
  },
  {
    "aspect_ratio": 0.67,
    "file_path": "/rUCmBo09lVZbbzCR5zbAMWazvOa.jpg",
    "height": 1500,
    "iso_639_1": null,
    "width": 1000
  },
  {
    "aspect_ratio": 0.67,
    "file_path": "/7b95oMhjiWby189P9DwutN5k374.jpg",
    "height": 1350,
    "iso_639_1": "de",
    "width": 900
  }
  ]
}

People

GET

/3/person/{id}

Get the general person information for a specific id.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any person method

Response

200 (OK)
    ETag: "6538fd4d8a83e8e2f26bc5dbc34a3dbe"
    Content-Type: application/json
    
{
    "adult": false,
    "also_known_as": [],
    "biography": "From Wikipedia, the free encyclopedia.\n\nWilliam Bradley \"Brad\" Pitt (born December 18, 1963) is an American actor and film producer. Pitt has received two Academy Award nominations and four Golden Globe Award nominations, winning one. He has been described as one of the world's most attractive men, a label for which he has received substantial media attention.\n\nPitt began his acting career with television guest appearances, including a role on the CBS prime-time soap opera Dallas in 1987. He later gained recognition as the cowboy hitchhiker who seduces Geena Davis's character in the 1991 road movie Thelma & Louise. Pitt's first leading roles in big-budget productions came with A River Runs Through It (1992) and Interview with the Vampire (1994). He was cast opposite Anthony Hopkins in the 1994 drama Legends of the Fall, which earned him his first Golden Globe nomination. In 1995 he gave critically acclaimed performances in the crime thriller Seven and the science fiction film 12 Monkeys, the latter securing him a Golden Globe Award for Best Supporting Actor and an Academy Award nomination. Four years later, in 1999, Pitt starred in the cult hit Fight Club. He then starred in the major international hit as Rusty Ryan in Ocean's Eleven (2001) and its sequels, Ocean's Twelve (2004) and Ocean's Thirteen (2007). His greatest commercial successes have been Troy (2004) and Mr. & Mrs. Smith (2005). Pitt received his second Academy Award nomination for his title role performance in the 2008 film The Curious Case of Benjamin Button.\n\nFollowing a high-profile relationship with actress Gwyneth Paltrow, Pitt was married to actress Jennifer Aniston for five years. Pitt lives with actress Angelina Jolie in a relationship that has generated wide publicity. He and Jolie have six children—Maddox, Pax, Zahara, Shiloh, Knox, and Vivienne. Since beginning his relationship with Jolie, he has become increasingly involved in social issues both in the United States and internationally. Pitt owns a production company named Plan B Entertainment, whose productions include the 2007 Academy Award winning Best Picture, The Departed.\n\nDescription above from the Wikipedia article Brad Pitt, licensed under CC-BY-SA, full list of contributors on Wikipedia.",
    "birthday": "1963-12-18",
    "deathday": "",
    "homepage": "http://simplybrad.com/",
    "id": 287,
    "name": "Brad Pitt",
    "place_of_birth": "Shawnee, Oklahoma, United States",
    "profile_path": "/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg"
}

GET

/3/person/{id}/credits

Get the credits for a specific person id.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.
append_to_responseComma separated, any person method

Response

200 (OK)
    ETag: "ed59e17b5c7940de30c6f597ebbf0200"
    Content-Type: application/json
    
{
    "cast": [
        {
            "id": 63,
            "title": "12 Monkeys",
            "character": "Jeffrey Goines",
            "original_title": "12 Monkeys",
            "poster_path": "/6Sj9wDu3YugthXsU0Vry5XFAZGg.jpg",
            "release_date": "1995-12-27",
            "adult": false
        },
        {
            "id": 107,
            "title": "Snatch",
            "character": "Mickey O'Neil",
            "original_title": "Snatch",
            "poster_path": "/on9JlbGEccLsYkjeEph2Whm1DIp.jpg",
            "release_date": "2000-12-06",
            "adult": false
        },
        {
            "id": 161,
            "title": "Ocean's Eleven",
            "character": "Rusty Ryan",
            "original_title": "Ocean's Eleven",
            "poster_path": "/o0h76DVXvk5OKjmNez5YY0GODC2.jpg",
            "release_date": "2001-12-07",
            "adult": false
        },
        {
            "id": 163,
            "title": "Ocean's Twelve",
            "character": "Rusty Ryan",
            "original_title": "Ocean's Twelve",
            "poster_path": "/cgYXGkpt5GRRoBtEjslolrKSfDR.jpg",
            "release_date": "2004-12-10",
            "adult": false
        },
        {
            "id": 293,
            "title": "A River Runs Through It",
            "character": "Paul Maclean",
            "original_title": "A River Runs Through It",
            "poster_path": "/xX4H1hZG9IgSRkC0LANbPQ0StJi.jpg",
            "release_date": "1992-09-13",
            "adult": false
        },
        {
            "id": 319,
            "title": "True Romance",
            "character": "Floyd",
            "original_title": "True Romance",
            "poster_path": "/xsosaUhEfkyAG2WIB3PQvrc3Tg4.jpg",
            "release_date": "1993-09-10",
            "adult": false
        },
        {
            "id": 492,
            "title": "Being John Malkovich",
            "character": "Himself",
            "original_title": "Being John Malkovich",
            "poster_path": "/9b3Eszi1x3vpCXcfR5iRZieVG9d.jpg",
            "release_date": "1999-09-02",
            "adult": false
        },
        {
            "id": 550,
            "title": "Fight Club",
            "character": "Tyler Durden",
            "original_title": "Fight Club",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "release_date": "1999-10-15",
            "adult": false
        },
        {
            "id": 628,
            "title": "Interview with the Vampire",
            "character": "Louis de Pointe du Lac",
            "original_title": "Interview with the Vampire",
            "poster_path": "/hldXwwViSfHJS0kIJr07KBGmHJI.jpg",
            "release_date": "1994-11-11",
            "adult": false
        },
        {
            "id": 652,
            "title": "Troy",
            "character": "Achilles",
            "original_title": "Troy",
            "poster_path": "/NHckko3awJyVwRJaOndFOFvgOB.jpg",
            "release_date": "2004-05-14",
            "adult": false
        },
        {
            "id": 787,
            "title": "Mr. & Mrs. Smith",
            "character": "John Smith",
            "original_title": "Mr. & Mrs. Smith",
            "poster_path": "/dqs5BmwSULtB28Kls3IB6khTQwp.jpg",
            "release_date": "2005-06-10",
            "adult": false
        },
        {
            "id": 819,
            "title": "Sleepers",
            "character": "Michael Sullivan",
            "original_title": "Sleepers",
            "poster_path": "/80LV2GvhvMEuOutxgQwbRYpo0Vv.jpg",
            "release_date": "1996-10-18",
            "adult": false
        },
        {
            "id": 978,
            "title": "Seven Years in Tibet",
            "character": "Heinrich Harrer",
            "original_title": "Seven Years in Tibet",
            "poster_path": "/50kwpLi4Zg3oUPF5xTe0CWE1tC2.jpg",
            "release_date": "1997-10-08",
            "adult": false
        },
        {
            "id": 1535,
            "title": "Spy Game",
            "character": "Tom Bishop",
            "original_title": "Spy Game",
            "poster_path": "/yOZaEah5YKwLHriMQAlg2eRNrga.jpg",
            "release_date": "2001-11-21",
            "adult": false
        },
        {
            "id": 1541,
            "title": "Thelma & Louise",
            "character": "J.D.",
            "original_title": "Thelma & Louise",
            "poster_path": "/uxfIGF3rHOfu9IyvHbGVmFvvPgH.jpg",
            "release_date": "1991-05-24",
            "adult": false
        },
        {
            "id": 4512,
            "title": "The Assassination of Jesse James by the Coward Robert Ford",
            "character": "Jesse James",
            "original_title": "The Assassination of Jesse James by the Coward Robert Ford",
            "poster_path": "/lSFYLoaL4eW7Q5VQ7SZQP4EHRCt.jpg",
            "release_date": "2007-09-21",
            "adult": false
        },
        {
            "id": 4912,
            "title": "Confessions of a Dangerous Mind",
            "character": "Brad, 1st Bachelor",
            "original_title": "Confessions of a Dangerous Mind",
            "poster_path": "/btP8bODCpxRgM8X9gxH7A8iAr5Z.jpg",
            "release_date": "2002-12-31",
            "adult": false
        },
        {
            "id": 4922,
            "title": "The Curious Case of Benjamin Button",
            "character": "Benjamin Button",
            "original_title": "The Curious Case of Benjamin Button",
            "poster_path": "/4O4INOPtWTfHq3dd5vYTPV0TCwa.jpg",
            "release_date": "2008-11-25",
            "adult": false
        },
        {
            "id": 4944,
            "title": "Burn After Reading",
            "character": "Chad Feldheimer",
            "original_title": "Burn After Reading",
            "poster_path": "/cXEtzWrwQB0u3zPgjaf0IiHEOmk.jpg",
            "release_date": "2008-09-12",
            "adult": false
        },
        {
            "id": 10917,
            "title": "Too Young to Die?",
            "character": "Billy Canton",
            "original_title": "Too Young to Die?",
            "poster_path": "/7qwH5pdWhScueSoZlorJLxqoNvH.jpg",
            "release_date": "1990-02-26",
            "adult": false
        },
        {
            "id": 14239,
            "title": "Cool World",
            "character": "Detective Frank Harris",
            "original_title": "Cool World",
            "poster_path": "/eSR3vFpgGQfYQYI2fMbwIZp70lp.jpg",
            "release_date": "1992-07-10",
            "adult": false
        },
        {
            "id": 16869,
            "title": "Inglourious Basterds",
            "character": "Lt. Aldo Raine",
            "original_title": "Inglourious Basterds",
            "poster_path": "/vDwqPyhkzFPRDmwz9KbzN2ouEPe.jpg",
            "release_date": "2009-08-21",
            "adult": false
        },
        {
            "id": 30565,
            "title": "The Hamster Factor and Other Tales of Twelve Monkeys",
            "character": "Himself",
            "original_title": "The Hamster Factor and Other Tales of Twelve Monkeys",
            "poster_path": "/sfPxX29hVdBq8cP5839Dx91cCW9.jpg",
            "release_date": "1997-01-01",
            "adult": false
        },
        {
            "id": 38055,
            "title": "Megamind",
            "character": "Metro Man (voice)",
            "original_title": "Megamind",
            "poster_path": "/amXAUSAUrnGuLGEyc1ZNhBvgbnF.jpg",
            "release_date": "2010-11-05",
            "adult": false
        },
        {
            "id": 68996,
            "title": "Ultimate Fights from the Movies",
            "character": "Mickey O'Neil (Snatch) (archive footage)",
            "original_title": "Ultimate Fights from the Movies",
            "poster_path": "/2KIKXjKoNTmpi22gsU3KUMv6wKA.jpg",
            "release_date": "2002-04-16",
            "adult": false
        },
        {
            "id": 298,
            "title": "Ocean's Thirteen",
            "character": "Robert “Rusty” Charles Ryan",
            "original_title": "Ocean's Thirteen",
            "poster_path": "/qThSqs7g6gbzVEvNI9PeqXd7Vhx.jpg",
            "release_date": "2007-06-08",
            "adult": false
        },
        {
            "id": 72190,
            "title": "World War Z",
            "character": "Gerry Lane",
            "original_title": "World War Z",
            "poster_path": "/n0yEwpn6x6JQjv32d8xCs0ccfic.jpg",
            "release_date": "2013-06-21",
            "adult": false
        },
        {
            "id": 8947,
            "title": "Dirty Tricks",
            "character": "John Dean",
            "original_title": "Dirty Tricks",
            "poster_path": null,
            "release_date": "2013-12-31",
            "adult": false
        },
        {
            "id": 26642,
            "title": "The Dark Side of the Sun",
            "character": "",
            "original_title": "The Dark Side of the Sun",
            "poster_path": "/nLc1Ij4qCbzrdxYpSb3yAswx01i.jpg",
            "release_date": "1988-01-01",
            "adult": false
        },
        {
            "id": 50463,
            "title": "The Favor",
            "character": "Elliott Fowler",
            "original_title": "The Favor",
            "poster_path": "/68a68qALehxulfbL2P56OKAJ6Ci.jpg",
            "release_date": "1994-04-29",
            "adult": false
        },
        {
            "id": 14411,
            "title": "Sinbad, Legend of the Seven Seas",
            "character": "Sinbad",
            "original_title": "Sinbad, Legend of the Seven Seas",
            "poster_path": "/6LELf4ZzVBJwR9mNq86Mf5QVERS.jpg",
            "release_date": "2003-07-02",
            "adult": false
        },
        {
            "id": 48448,
            "title": "Across the Tracks",
            "character": "Joe Maloney",
            "original_title": "Across the Tracks",
            "poster_path": "/pBYUnMnZAB3Oda2GQxcGoFQ0IGq.jpg",
            "release_date": "1991-07-01",
            "adult": false
        },
        {
            "id": 64689,
            "title": "Killing Them Softly",
            "character": "Jackie Cogan",
            "original_title": "Killing Them Softly",
            "poster_path": "/awr9pQcTWIHt8Sp00WR4a4CUcOV.jpg",
            "release_date": "2012-09-21",
            "adult": false
        },
        {
            "id": 297,
            "title": "Meet Joe Black",
            "character": "Joe Black",
            "original_title": "Meet Joe Black",
            "poster_path": "/3velgL8B8MtsIpRsMuRCNemtBQ9.jpg",
            "release_date": "1998-11-13",
            "adult": false
        },
        {
            "id": 1164,
            "title": "Babel",
            "character": "Richard",
            "original_title": "Babel",
            "poster_path": "/fxneN0EQZwTfAfhTGUvUuIn6PLi.jpg",
            "release_date": "2006-10-27",
            "adult": false
        },
        {
            "id": 45145,
            "title": "Johnny Suede",
            "character": "Johnny Suede",
            "original_title": "Johnny Suede",
            "poster_path": "/gQjYAnUpNQc26Y2D3Ctp56HsHSv.jpg",
            "release_date": "1992-08-14",
            "adult": false
        },
        {
            "id": 4476,
            "title": "Legends of the Fall",
            "character": "Tristan Ludlow",
            "original_title": "Legends of the Fall",
            "poster_path": "/iBLiCaQ2Ac4fT6xvOjoeeQVMROp.jpg",
            "release_date": "1994-12-16",
            "adult": false
        },
        {
            "id": 6073,
            "title": "The Mexican",
            "character": "Jerry Welbach",
            "original_title": "The Mexican",
            "poster_path": "/dvPSYhhaTYndZOyRCWuWRKJmeRC.jpg",
            "release_date": "2001-03-02",
            "adult": false
        },
        {
            "id": 4477,
            "title": "The Devil's Own",
            "character": "Frankie McGuire",
            "original_title": "The Devil's Own",
            "poster_path": "/2WNOvTWmOvdnVoHhctCpf0cPd6e.jpg",
            "release_date": "1997-03-13",
            "adult": false
        },
        {
            "id": 807,
            "title": "Se7en",
            "character": "Detective David Mills",
            "original_title": "Se7en",
            "poster_path": "/zgB9CCTDlXRv50Z70ZI4elJtNEk.jpg",
            "release_date": "1995-09-22",
            "adult": false
        },
        {
            "id": 10909,
            "title": "Kalifornia",
            "character": "Early Grayce",
            "original_title": "Kalifornia",
            "poster_path": "/4gkWPWSumyMwRLwys2KYFEbXhf7.jpg",
            "release_date": "1993-09-03",
            "adult": false
        },
        {
            "id": 8967,
            "title": "The Tree of Life",
            "character": "Mr. O'Brien",
            "original_title": "The Tree of Life",
            "poster_path": "/5uiccn657MLiAbVHS5SfWFdeSTw.jpg",
            "release_date": "2011-05-27",
            "adult": false
        },
        {
            "id": 60308,
            "title": "Moneyball",
            "character": "Billy Beane",
            "original_title": "Moneyball",
            "poster_path": "/oq6EBGKAZNK1V0SUi01Si64k3zS.jpg",
            "release_date": "2011-09-23",
            "adult": false
        },
        {
            "id": 76203,
            "title": "12 Years a Slave",
            "character": "",
            "original_title": "12 Years a Slave",
            "poster_path": null,
            "release_date": "2013-12-31",
            "adult": false
        },
        {
            "id": 65759,
            "title": "Happy Feet Two",
            "character": "Will the Krill (voice)",
            "original_title": "Happy Feet Two",
            "poster_path": "/gY8lWCObaGvcDsmeM8QHBF4AZVk.jpg",
            "release_date": "2011-11-18",
            "adult": false
        },
        {
            "id": 109091,
            "title": "The Counselor",
            "character": "Westray",
            "original_title": "The Counselor",
            "poster_path": null,
            "release_date": null,
            "adult": false
        },
        {
            "id": 109404,
            "title": "8",
            "character": "Chief Judge Vaughn R. Walker",
            "original_title": "8",
            "poster_path": "/28fDtVBr6PyHsFFqyKJCeN3ysBP.jpg",
            "release_date": "2012-03-03",
            "adult": false
        },
        {
            "id": 119389,
            "title": "Drei Wege in den Tod",
            "character": "Billy",
            "original_title": "Drei Wege in den Tod",
            "poster_path": "/3le0B2supzYA91qdoaRB0S9uiim.jpg",
            "release_date": null,
            "adult": false
        }
    ],
    "crew": [
        {
            "id": 652,
            "title": "Troy",
            "original_title": "Troy",
            "department": "Production",
            "job": "Other",
            "poster_path": "/NHckko3awJyVwRJaOndFOFvgOB.jpg",
            "release_date": "2004-05-14",
            "adult": false
        },
        {
            "id": 1422,
            "title": "The Departed",
            "original_title": "The Departed",
            "department": "Production",
            "job": "Producer",
            "poster_path": "/tGLO9zw5ZtCeyyEWgbYGgsFxC6i.jpg",
            "release_date": "2006-10-26",
            "adult": false
        },
        {
            "id": 1988,
            "title": "A Mighty Heart",
            "original_title": "A Mighty Heart",
            "department": "Production",
            "job": "Producer",
            "poster_path": "/8khwSri6av5MtP1BmyeN1gEHVJN.jpg",
            "release_date": "2007-05-21",
            "adult": false
        },
        {
            "id": 7510,
            "title": "Running with Scissors",
            "original_title": "Running with Scissors",
            "department": "Production",
            "job": "Producer",
            "poster_path": "/rVt2ULEkqhDlw6f62M0Pn1LvPfe.jpg",
            "release_date": "2006-10-27",
            "adult": false
        },
        {
            "id": 23483,
            "title": "Kick-Ass",
            "original_title": "Kick-Ass",
            "department": "Production",
            "job": "Producer",
            "poster_path": "/gtfggr5n3ED1neoTqVYmsVCoSS.jpg",
            "release_date": "2010-04-16",
            "adult": false
        },
        {
            "id": 4512,
            "title": "The Assassination of Jesse James by the Coward Robert Ford",
            "original_title": "The Assassination of Jesse James by the Coward Robert Ford",
            "department": "Production",
            "job": "Producer",
            "poster_path": "/lSFYLoaL4eW7Q5VQ7SZQP4EHRCt.jpg",
            "release_date": "2007-09-21",
            "adult": false
        },
        {
            "id": 113833,
            "title": "The Normal Heart",
            "original_title": "The Normal Heart",
            "department": "Production",
            "job": "Producer",
            "poster_path": null,
            "release_date": null,
            "adult": false
        }
    ],
    "id": 287
}

GET

/3/person/{id}/images

Get the images for a specific person id.

Required Parameters
api_key

Response

200 (OK)
    ETag: "daabfabaf8ea306c8043526a4cc8951f"
    Content-Type: application/json
    
{
    "id": 287,
    "profiles": [
        {
            "file_path": "/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg",
            "width": 1295,
            "height": 1969,
            "iso_639_1": null,
            "aspect_ratio": 0.66000000000000003
        },
        {
            "file_path": "/cLUacutO7dOMksQK8Zg0q2Gybsx.jpg",
            "width": 820,
            "height": 1230,
            "iso_639_1": null,
            "aspect_ratio": 0.67000000000000004
        },
        {
            "file_path": "/zEbgoayf0MfuSznehhXdaP2YkeH.jpg",
            "width": 700,
            "height": 983,
            "iso_639_1": null,
            "aspect_ratio": 0.70999999999999996
        }
    ]
}

GET

/3/person/{id}/changes

Get the changes for a specific person id.

Changes are grouped by key, and ordered by date in descending order. By default, only the last 24 hours of changes are returned. The maximum number of days that can be returned in a single request is 14. The language is present on fields that are translatable.

Required Parameters
api_key
Optional Parameters
start_dateYYYY-MM-DD
end_dateYYYY-MM-DD

Response

200 (OK)
    ETag: "a007a0175bcf31188293947721411fe6"
    Content-Type: application/json
    
{
    "changes": [
        {
            "key": "general",
            "items": [
                {
                    "id": "50745cd3760ee35edd0001a4",
                    "action": "created",
                    "time": "2012-10-09 17:20:19 UTC"
                }
            ]
        },
        {
            "key": "name",
            "items": [
                {
                    "id": "50745cd3760ee35edd0001a5",
                    "action": "added",
                    "time": "2012-10-09 17:20:19 UTC",
                    "value": "Brad Pitt"
                }
            ]
        }
    ]
}

GET

/3/person/popular

Get the list of popular people on The Movie Database. This list refreshes every day.

Required Parameters
api_key
Optional Parameters
page

Response

200 (OK)
    ETag: "e97fd97466d81dfca23cf648a016affd"
    Content-Type: application/json
    
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "id": 8784,
      "name": "Daniel Craig",
      "profile_path": "/wWMdqiqW6unT6TnXydQbOtYffeO.jpg"
    },
    {
      "adult": false,
      "id": 20005,
      "name": "Moira Kelly",
      "profile_path": "/4cDCNxqYgJ0ueUqIpM4lUBnBb5f.jpg"
    },
    {
      "adult": false,
      "id": 17282,
      "name": "Takashi Miike",
      "profile_path": "/sAuA3MamBI87lB9rirbdqgcuOu0.jpg"
    },
    {
      "adult": false,
      "id": 62,
      "name": "Bruce Willis",
      "profile_path": "/szRtf6oUR9cT6whTbRc5sCQGi8a.jpg"
    },
    {
      "adult": false,
      "id": 9340,
      "name": "Lana Wachowski",
      "profile_path": "/8mbcXfOpmOiDLk6ZWfMsBGHEnet.jpg"
    },
    {
      "adult": false,
      "id": 31,
      "name": "Tom Hanks",
      "profile_path": "/1TGabQuX8wlHFNTxFijX2hweNNR.jpg"
    },
    {
      "adult": false,
      "id": 28846,
      "name": "Alexander Skarsgård",
      "profile_path": "/6UlvGpmOVYYzWIGsC558bUYPm0U.jpg"
    },
    {
      "adult": false,
      "id": 287,
      "name": "Brad Pitt",
      "profile_path": "/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg"
    },
    {
      "adult": false,
      "id": 11108,
      "name": "Simon Pegg",
      "profile_path": "/sxfrOKHpm0WV72rFqGmLkzavkJS.jpg"
    },
    {
      "adult": false,
      "id": 45982,
      "name": "Alberto Sordi",
      "profile_path": "/qfrgQ551SxM2i4LMIFLX7kScUc7.jpg"
    },
    {
      "adult": false,
      "id": 1146550,
      "name": "Andreea Valean",
      "profile_path": null
    },
    {
      "adult": false,
      "id": 1123441,
      "name": "Lynn Redgrave",
      "profile_path": null
    },
    {
      "adult": false,
      "id": 1132416,
      "name": "Richard Dreyfuss",
      "profile_path": null
    },
    {
      "adult": false,
      "id": 11090,
      "name": "Edgar Wright",
      "profile_path": "/usP3f3DB3BgNgwlvBd5nQNXUCQv.jpg"
    },
    {
      "adult": false,
      "id": 114463,
      "name": "Michelle Jenner",
      "profile_path": "/jMi1nhPPjIn7TRZ2PrNWVQFbhpB.jpg"
    },
    {
      "adult": false,
      "id": 1149851,
      "name": "Maurizio Forestieri",
      "profile_path": "/cqg6n5wMERepaoMr3Ak5wH9Myuw.jpg"
    },
    {
      "adult": false,
      "id": 24829,
      "name": "Jean-Guy Fechner",
      "profile_path": "/kWwHjF14w30SMuC8V4W2GofIMvE.jpg"
    },
    {
      "adult": false,
      "id": 524,
      "name": "Natalie Portman",
      "profile_path": "/d30Z0EKHJcDMYaJfLr2X6rVoUrI.jpg"
    },
    {
      "adult": false,
      "id": 14999,
      "name": "George A. Romero",
      "profile_path": "/q1XONnZT4ccRVGd9gSAv0F0D8te.jpg"
    },
    {
      "adult": false,
      "id": 17067,
      "name": "Karoline Herfurth",
      "profile_path": "/8HVqhIaLQA3MOTO88Ncn6VOCzdp.jpg"
    }
  ],
  "total_pages": 13,
  "total_results": 243
}

GET

/3/person/latest

Get the latest person id.

Required Parameters
api_key

Response

200 (OK)
    ETag: "d0db9614fd3971f3928f9f044a7202e0"
    Content-Type: application/json
    
{
    "adult": false,
    "also_known_as": [],
    "biography": null,
    "birthday": null,
    "deathday": null,
    "homepage": null,
    "id": 1108200,
    "name": "Ted Koland",
    "place_of_birth": null,
    "profile_path": null
}

Lists

GET

/3/list/{id}

Get a list by id.

Required Parameters
api_key

Response

200 (OK)
    ETag: "d0db9614fd3971f3928f9f044a7202e0"
    Content-Type: application/json
    
{
    "created_by": "Travis Bell",
    "description": "Here's my list of best picture winners for the Oscars. Thought it would be neat to see them all together. There's a lot of movies here I have never even heard of.",
    "favorite_count": 1,
    "id": "509ec17b19c2950a0600050d",
    "items": [
        {
            "backdrop_path": "/tr6OExnBfjLADi9OyZoW308mPAp.jpg",
            "id": 74643,
            "original_title": "The Artist",
            "release_date": "2011-11-25",
            "poster_path": "/z7lvVd5JIj3JAHy3mC8eUtzrsTJ.jpg",
            "title": "The Artist",
            "vote_average": 7.5,
            "vote_count": 28
        },
        {
            "backdrop_path": "/hAQKDTVKk04LWn82OYWLBPpsaVa.jpg",
            "id": 45269,
            "original_title": "The King's Speech",
            "release_date": "2010-11-26",
            "poster_path": "/kZyNRCxnF5TUgbUyPh3CtCCsK1T.jpg",
            "title": "The King's Speech",
            "vote_average": 8.5999999999999996,
            "vote_count": 87
        },
        {
            "backdrop_path": "/3iPnZOXR9mpcK8RwvAW7b7Axr8v.jpg",
            "id": 12162,
            "original_title": "The Hurt Locker",
            "release_date": "2008-10-10",
            "poster_path": "/uToiRjgTYfGrXnMNxpyiGZPgvM0.jpg",
            "title": "The Hurt Locker",
            "vote_average": 7.7000000000000002,
            "vote_count": 42
        },
        {
            "backdrop_path": "/heYHgkaxA1z7IJG0pLitaXmd2Pm.jpg",
            "id": 12405,
            "original_title": "Slumdog Millionaire",
            "release_date": "2008-11-12",
            "poster_path": "/ojgf8iJpS4VX6jJfWGLpuEx0wm.jpg",
            "title": "Slumdog Millionaire",
            "vote_average": 8.5,
            "vote_count": 28
        },
        {
            "backdrop_path": "/yX4N3Mge2uRNsjnhPRvrkkEQEPp.jpg",
            "id": 6977,
            "original_title": "No Country for Old Men",
            "release_date": "2007-11-09",
            "poster_path": "/6o0UWX2naW7HK45PDNYmoMIk5qs.jpg",
            "title": "No Country for Old Men",
            "vote_average": 7.9000000000000004,
            "vote_count": 37
        },
        {
            "backdrop_path": "/8Od5zV7Q7zNOX0y9tyNgpTmoiGA.jpg",
            "id": 1422,
            "original_title": "The Departed",
            "release_date": "2006-10-26",
            "poster_path": "/tGLO9zw5ZtCeyyEWgbYGgsFxC6i.jpg",
            "title": "The Departed",
            "vote_average": 8.1999999999999993,
            "vote_count": 53
        },
        {
            "backdrop_path": "/lhkU86q5cszZkca9MVQLMvUAE6m.jpg",
            "id": 1640,
            "original_title": "Crash",
            "release_date": "2004-09-10",
            "poster_path": "/pG8LL4LYMCr5uikhx9rewrW8352.jpg",
            "title": "Crash",
            "vote_average": 8.5,
            "vote_count": 20
        },
        {
            "backdrop_path": "/hkThVOEcPNcyyaeCCN2NNTvKMK4.jpg",
            "id": 70,
            "original_title": "Million Dollar Baby",
            "release_date": "2004-12-15",
            "poster_path": "/h4VZKi2Jt4VoBYJmtC4c3bO8KqM.jpg",
            "title": "Million Dollar Baby",
            "vote_average": 8.4000000000000004,
            "vote_count": 22
        },
        {
            "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg",
            "id": 122,
            "original_title": "The Lord of the Rings: The Return of the King",
            "release_date": "2003-12-17",
            "poster_path": "/j6NCjU6Zh7SkfIeN5zDaoTmBn4m.jpg",
            "title": "The Lord of the Rings: The Return of the King",
            "vote_average": 9.0,
            "vote_count": 143
        },
        {
            "backdrop_path": "/qXLXEvYSycdllvdKvmhFXLUcFhM.jpg",
            "id": 1574,
            "original_title": "Chicago",
            "release_date": "2002-12-27",
            "poster_path": "/18pCc2XZ5MO7wsywOYEbhoeuxNw.jpg",
            "title": "Chicago",
            "vote_average": 7.0999999999999996,
            "vote_count": 5
        },
        {
            "backdrop_path": "/5YF6MwuuKBRKLUE2dz3wetkgxAE.jpg",
            "id": 453,
            "original_title": "A Beautiful Mind",
            "release_date": "2001-12-13",
            "poster_path": "/v1WdKm9qQPBfhoHanBP5XxzIBDU.jpg",
            "title": "A Beautiful Mind",
            "vote_average": 8.5,
            "vote_count": 31
        },
        {
            "backdrop_path": "/5vZw7ltCKI0JiOYTtRxaIC3DX0e.jpg",
            "id": 98,
            "original_title": "Gladiator",
            "release_date": "2000-05-01",
            "poster_path": "/37rb0hYK6vvPwWXbRuleIBybEOh.jpg",
            "title": "Gladiator",
            "vote_average": 8.5999999999999996,
            "vote_count": 87
        },
        {
            "backdrop_path": "/mAwd34SAC8KqBKRm2MwHPLhLDU5.jpg",
            "id": 14,
            "original_title": "American Beauty",
            "release_date": "1999-09-15",
            "poster_path": "/3UBQGKS8c1dxRnDiu5kUK6ej3pP.jpg",
            "title": "American Beauty",
            "vote_average": 8.4000000000000004,
            "vote_count": 47
        },
        {
            "backdrop_path": "/qvhpBNfb53wLnEbVnmC5GNGFRHO.jpg",
            "id": 1934,
            "original_title": "Shakespeare in Love",
            "release_date": "1998-12-11",
            "poster_path": "/sAN5jedynbs3pa3ww0UXQ1k0lRF.jpg",
            "title": "Shakespeare in Love",
            "vote_average": 7.0,
            "vote_count": 9
        },
        {
            "backdrop_path": "/fVcZErSWa7gyENuj8IWp8eAfCnL.jpg",
            "id": 597,
            "original_title": "Titanic",
            "release_date": "1997-11-01",
            "poster_path": "/f9iH7Javzxokvnkiz2yHD1dcmUy.jpg",
            "title": "Titanic",
            "vote_average": 8.1999999999999993,
            "vote_count": 64
        },
        {
            "backdrop_path": "/cD7lPdjFyf5dQIlc6ToehqFrIZU.jpg",
            "id": 409,
            "original_title": "The English Patient",
            "release_date": "1996-11-06",
            "poster_path": "/niqc0v3Lclh99Mmmxm49qZTIo2e.jpg",
            "title": "The English Patient",
            "vote_average": 7.9000000000000004,
            "vote_count": 5
        },
        {
            "backdrop_path": "/86rb0acJd7xwCPhx2FUtupCe6GU.jpg",
            "id": 197,
            "original_title": "Braveheart",
            "release_date": "1995-05-24",
            "poster_path": "/4T4xQJXSdTNbzUrlT6Eh13kiy5H.jpg",
            "title": "Braveheart",
            "vote_average": 8.8000000000000007,
            "vote_count": 72
        },
        {
            "backdrop_path": "/wMgbnUVS9wbRGAdki8fqxKU1O0N.jpg",
            "id": 13,
            "original_title": "Forrest Gump",
            "release_date": "1994-06-23",
            "poster_path": "/pEYI2QILJWMN1ZeEMgMM0jxBVhK.jpg",
            "title": "Forrest Gump",
            "vote_average": 8.9000000000000004,
            "vote_count": 93
        },
        {
            "backdrop_path": "/af98P1bc7lJsFjhHOVWXQgNNgSQ.jpg",
            "id": 424,
            "original_title": "Schindler's List",
            "release_date": "1993-11-30",
            "poster_path": "/tvOvW7Qjj63zbQW5TZ8CjPThAUd.jpg",
            "title": "Schindler's List",
            "vote_average": 8.5999999999999996,
            "vote_count": 45
        },
        {
            "backdrop_path": "/v1yqk8qmdOr2c6rstvhdwpmcfpE.jpg",
            "id": 33,
            "original_title": "Unforgiven",
            "release_date": "1992-08-07",
            "poster_path": "/9oPodyvCWyPMZJDjg29tBfFRwtG.jpg",
            "title": "Unforgiven",
            "vote_average": 8.5999999999999996,
            "vote_count": 30
        },
        {
            "backdrop_path": "/5bhvs5W3aczXebV5KaXMR5VAUZO.jpg",
            "id": 274,
            "original_title": "The Silence of the Lambs",
            "release_date": "1991-02-13",
            "poster_path": "/xDRBmwNpZzhhxZCMr81LbJqBKAa.jpg",
            "title": "The Silence of the Lambs",
            "vote_average": 8.6999999999999993,
            "vote_count": 62
        },
        {
            "backdrop_path": "/gkW2RMlwl4kqaMIDjaAE73rAPpZ.jpg",
            "id": 581,
            "original_title": "Dances with Wolves",
            "release_date": "1990-10-19",
            "poster_path": "/hpmclspug1I8EwKSWhL7pWWltA.jpg",
            "title": "Dances with Wolves",
            "vote_average": 8.3000000000000007,
            "vote_count": 19
        },
        {
            "backdrop_path": "/uK0ihZKox9aatW6KH1yjZh8wkt3.jpg",
            "id": 403,
            "original_title": "Driving Miss Daisy",
            "release_date": "1989-12-13",
            "poster_path": "/iMN2pXVh0ra5fIX3jsVDRGK9FZw.jpg",
            "title": "Driving Miss Daisy",
            "vote_average": 7.9000000000000004,
            "vote_count": 6
        },
        {
            "backdrop_path": "/si2eYu8vpfb2Gu9jHnnbBtSXnNJ.jpg",
            "id": 380,
            "original_title": "Rain Man",
            "release_date": "1988-12-12",
            "poster_path": "/mTCpNdDTMGEyrkETRkVqRVkHpx1.jpg",
            "title": "Rain Man",
            "vote_average": 8.9000000000000004,
            "vote_count": 13
        },
        {
            "backdrop_path": "/36bUqxQYAsPTYCfVjrcxecGqMZr.jpg",
            "id": 746,
            "original_title": "The Last Emperor",
            "release_date": "1987-10-29",
            "poster_path": "/KTirnfG6FZLKWbm8Am3EEKmZDx.jpg",
            "title": "The Last Emperor",
            "vote_average": 9.0,
            "vote_count": 4
        },
        {
            "backdrop_path": "/ufqPsRItWyFzdFz3MevDkxRF8pT.jpg",
            "id": 792,
            "original_title": "Platoon",
            "release_date": "1986-12-19",
            "poster_path": "/mzCTGi8s72xjLT40y7H8IyjOV3v.jpg",
            "title": "Platoon",
            "vote_average": 8.5999999999999996,
            "vote_count": 27
        },
        {
            "backdrop_path": "/w6VwFCdQypTKEZAkzWtyPVii3zp.jpg",
            "id": 606,
            "original_title": "Out of Africa",
            "release_date": "1985-12-10",
            "poster_path": "/bLXD2jp0img4RJiczAwnS7m7jF9.jpg",
            "title": "Out of Africa",
            "vote_average": 8.3000000000000007,
            "vote_count": 2
        },
        {
            "backdrop_path": "/m44idUAByhxgE2sCm0kFG6E3hXh.jpg",
            "id": 279,
            "original_title": "Amadeus",
            "release_date": "1984-11-13",
            "poster_path": "/chNMAdhSpUslHU4dsmIVvlvnDq9.jpg",
            "title": "Amadeus",
            "vote_average": 8.5,
            "vote_count": 22
        },
        {
            "backdrop_path": "/8jOZrHAbHmMtcZOhFeJDtwzylRs.jpg",
            "id": 11050,
            "original_title": "Terms of Endearment",
            "release_date": "1983-11-23",
            "poster_path": "/xKna5S3i1ZuM0xlPpb0hgbcrfkx.jpg",
            "title": "Terms of Endearment",
            "vote_average": 7.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/yN4mQzPthU1l3PQWxYhzWKargL5.jpg",
            "id": 783,
            "original_title": "Gandhi",
            "release_date": "1982-11-30",
            "poster_path": "/2z9A4FSu1YySrhhcuqkdMIXpgyN.jpg",
            "title": "Gandhi",
            "vote_average": 9.4000000000000004,
            "vote_count": 9
        },
        {
            "backdrop_path": "/7ja43jA2HQieK7PNr2VhTCcyJE4.jpg",
            "id": 9443,
            "original_title": "Chariots of Fire",
            "release_date": "1982-05-07",
            "poster_path": "/tDt0QreHAiM44km0Iek0UwLdyIW.jpg",
            "title": "Chariots of Fire",
            "vote_average": 8.3000000000000007,
            "vote_count": 4
        },
        {
            "backdrop_path": "/ooNn9rDJye7Y6cTmGniGTe12mec.jpg",
            "id": 16619,
            "original_title": "Ordinary People",
            "release_date": "1980-09-19",
            "poster_path": "/qMu4uI7fNuGiuPVdyxMenx1BfWO.jpg",
            "title": "Ordinary People",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/uykne2LCkVuD5NEBzicCmCHFqBa.jpg",
            "id": 12102,
            "original_title": "Kramer vs. Kramer",
            "release_date": "1979-12-19",
            "poster_path": "/AwqsWJGD3P9YJKpOQ48DcXptyEy.jpg",
            "title": "Kramer vs. Kramer",
            "vote_average": 9.0,
            "vote_count": 4
        },
        {
            "backdrop_path": "/6y7tez5wmDxe3NktQQAQxO9OGKP.jpg",
            "id": 11778,
            "original_title": "The Deer Hunter",
            "release_date": "1978-12-08",
            "poster_path": "/slNJESItHPqp1CENEJQUPw8d7WE.jpg",
            "title": "The Deer Hunter",
            "vote_average": 8.8000000000000007,
            "vote_count": 21
        },
        {
            "backdrop_path": "/dbNBU5LbDQLXQEX1V0jAOY7qjO3.jpg",
            "id": 703,
            "original_title": "Annie Hall",
            "release_date": "1977-01-01",
            "poster_path": "/bK9bLXwxWuXX5mbq75PZqjvAtfG.jpg",
            "title": "Annie Hall",
            "vote_average": 7.5999999999999996,
            "vote_count": 8
        },
        {
            "backdrop_path": "/2kkyt0FLROrXt41IgSdE7goCFNQ.jpg",
            "id": 1366,
            "original_title": "Rocky",
            "release_date": "1976-11-21",
            "poster_path": "/7fxhlRw1ITAUYaqYV1bu90QxXr1.jpg",
            "title": "Rocky",
            "vote_average": 8.0999999999999996,
            "vote_count": 25
        },
        {
            "backdrop_path": "/oWoYHqB8GNFbUvomFpPX4SpWtHS.jpg",
            "id": 510,
            "original_title": "One Flew Over the Cuckoo's Nest",
            "release_date": "1975-11-19",
            "poster_path": "/srr59GKJdDXPwnWlew9NoYfOvYV.jpg",
            "title": "One Flew Over the Cuckoo's Nest",
            "vote_average": 8.8000000000000007,
            "vote_count": 43
        },
        {
            "backdrop_path": "/xUU1melxrkb7IXl1F7PXrtZAWWl.jpg",
            "id": 240,
            "original_title": "The Godfather: Part II",
            "release_date": "1974-12-20",
            "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg",
            "title": "The Godfather: Part II",
            "vote_average": 9.0,
            "vote_count": 67
        },
        {
            "backdrop_path": "/cOwkXuUmsBDvkJZcY0Hcoj2Mj44.jpg",
            "id": 9277,
            "original_title": "The Sting",
            "release_date": "1973-12-25",
            "poster_path": "/3htMG8o6se0xumrESfT71RXIGSs.jpg",
            "title": "The Sting",
            "vote_average": 8.8000000000000007,
            "vote_count": 7
        },
        {
            "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg",
            "id": 238,
            "original_title": "The Godfather",
            "release_date": "1972-03-15",
            "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg",
            "title": "The Godfather",
            "vote_average": 9.0999999999999996,
            "vote_count": 144
        },
        {
            "backdrop_path": "/gtJfx5FzKqJtoUrNGG4zVzltIvj.jpg",
            "id": 1051,
            "original_title": "The French Connection",
            "release_date": "1971-10-07",
            "poster_path": "/n5O4322nJr6yM3MhUA3ixQy60jZ.jpg",
            "title": "The French Connection",
            "vote_average": 9.0,
            "vote_count": 7
        },
        {
            "backdrop_path": "/iCLuDtSSU0cFLH1oTM1828STIOB.jpg",
            "id": 11202,
            "original_title": "Patton",
            "release_date": "1970-01-25",
            "poster_path": "/6pyN7udgYaGr6uNIP2MuLUcqmPh.jpg",
            "title": "Patton",
            "vote_average": 9.8000000000000007,
            "vote_count": 6
        },
        {
            "backdrop_path": "/6bkR6eMCafikq0Nvi665MwsUddk.jpg",
            "id": 3116,
            "original_title": "Midnight Cowboy",
            "release_date": "1969-05-25",
            "poster_path": "/cwC4TUi7nfpGDEdk4zRem4aSUmY.jpg",
            "title": "Midnight Cowboy",
            "vote_average": 9.0,
            "vote_count": 6
        },
        {
            "backdrop_path": "/4VFCNi7MOwUZz4KgvPoKlyl2bJ4.jpg",
            "id": 17917,
            "original_title": "Oliver!",
            "release_date": "1968-09-26",
            "poster_path": "/9cB4dNSCnSRMULYGYWHM5MQNtEf.jpg",
            "title": "Oliver!",
            "vote_average": 7.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/nXBR8MS7v8V1i0yjHrmpLieaKHe.jpg",
            "id": 10633,
            "original_title": "In the Heat of the Night",
            "release_date": "1967-08-02",
            "poster_path": "/ecwPfGDWBh4ZR59TWb8hkDeyWzo.jpg",
            "title": "In the Heat of the Night",
            "vote_average": 7.7000000000000002,
            "vote_count": 3
        },
        {
            "backdrop_path": "/ivssZ1NdLhovWIEUgi9wN69dR3s.jpg",
            "id": 874,
            "original_title": "A Man for All Seasons",
            "release_date": "1966-12-12",
            "poster_path": "/5immQmdfnCWCibMVVRw6ElFU95T.jpg",
            "title": "A Man for All Seasons",
            "vote_average": 9.3000000000000007,
            "vote_count": 2
        },
        {
            "backdrop_path": "/4b4Du90YigFgcSfUdHnYNIFpqX4.jpg",
            "id": 15121,
            "original_title": "The Sound of Music",
            "release_date": "1965-03-02",
            "poster_path": "/sPDtBNGYeOEycLbXCn9Md539SDn.jpg",
            "title": "The Sound of Music",
            "vote_average": 8.1999999999999993,
            "vote_count": 17
        },
        {
            "backdrop_path": "/aCntuH0a6teZe4B68BOULQd8kkp.jpg",
            "id": 11113,
            "original_title": "My Fair Lady",
            "release_date": "1964-10-21",
            "poster_path": "/sKEylXQWa15RFLaB54TpBI2eJuy.jpg",
            "title": "My Fair Lady",
            "vote_average": 9.0999999999999996,
            "vote_count": 7
        },
        {
            "backdrop_path": "/lBwta7cIfHKSJ6m4eEPkydhkuOv.jpg",
            "id": 5769,
            "original_title": "Tom Jones",
            "release_date": "1963-10-06",
            "poster_path": "/w0gUNP3P7tsrLvpy4hicRRY6uFY.jpg",
            "title": "Tom Jones",
            "vote_average": 9.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/xpF0fy3pKcxz6jgHYMPUMWNZ627.jpg",
            "id": 947,
            "original_title": "Lawrence of Arabia",
            "release_date": "1962-12-10",
            "poster_path": "/we2lCeDzaeExUk68qyTDflHAq5m.jpg",
            "title": "Lawrence of Arabia",
            "vote_average": 8.8000000000000007,
            "vote_count": 11
        },
        {
            "backdrop_path": "/kSj4VqrUhMcgZzsAucLMyNnsSr.jpg",
            "id": 1725,
            "original_title": "West Side Story",
            "release_date": "1961-10-18",
            "poster_path": "/1a8hKpfSNfb6EWXBua198EvAVZI.jpg",
            "title": "West Side Story",
            "vote_average": 6.0,
            "vote_count": 2
        },
        {
            "backdrop_path": "/r1u2bLVO83dvNDODn2oTNLlzYjG.jpg",
            "id": 284,
            "original_title": "The Apartment",
            "release_date": "1960-06-15",
            "poster_path": "/6J5rwcWYCRUz2gNH3nrq4whSvmp.jpg",
            "title": "The Apartment",
            "vote_average": 8.5999999999999996,
            "vote_count": 5
        },
        {
            "backdrop_path": "/nLYdvPZ0FtIgx0zoN7dtcxnI0Q6.jpg",
            "id": 665,
            "original_title": "Ben-Hur",
            "release_date": "1959-11-18",
            "poster_path": "/cNSBgQgJx2yXxYlIyWFhWz2F377.jpg",
            "title": "Ben-Hur",
            "vote_average": 8.6999999999999993,
            "vote_count": 13
        },
        {
            "backdrop_path": "/sivrafalYBFYiuHQZ1vUrbstTKe.jpg",
            "id": 17281,
            "original_title": "Gigi",
            "release_date": "1958-05-15",
            "poster_path": "/jJ1DDeYz91D5aUqLo0Vxtk0mClD.jpg",
            "title": "Gigi",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/zt0iYqy0xNEnTu0RX2MfLSo2nz1.jpg",
            "id": 826,
            "original_title": "The Bridge on the River Kwai",
            "release_date": "1957-12-14",
            "poster_path": "/vtPR6tSHeu35rF6qTDw3Yjr9eDg.jpg",
            "title": "The Bridge on the River Kwai",
            "vote_average": 8.4000000000000004,
            "vote_count": 9
        },
        {
            "backdrop_path": "/lYDstR3BYCkS7IMnbYwvJuHBTt4.jpg",
            "id": 2897,
            "original_title": "Around the World in Eighty Days",
            "release_date": "1956-10-17",
            "poster_path": "/3USA5uoCz3Oth6pEkg9nUZAyiOh.jpg",
            "title": "Around the World in Eighty Days",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/Av34qZiiSWHkBYsbEGlYRsySHj2.jpg",
            "id": 15919,
            "original_title": "Marty",
            "release_date": "1955-04-11",
            "poster_path": "/ml29uk3ROm8rgaXfsMvp96z0C6G.jpg",
            "title": "Marty",
            "vote_average": 7.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/zXp2ydvhO9qGzpIsb1CWeKnn5yg.jpg",
            "id": 654,
            "original_title": "On the Waterfront",
            "release_date": "1954-07-28",
            "poster_path": "/dPGsTlEHDjz5iAwWLd2CwkYMPhi.jpg",
            "title": "On the Waterfront",
            "vote_average": 9.0,
            "vote_count": 7
        },
        {
            "backdrop_path": "/9LkxpkVwf7eGGKrBlZ4DqywwDEl.jpg",
            "id": 11426,
            "original_title": "From Here to Eternity",
            "release_date": "1953-08-05",
            "poster_path": "/cpSH67TguiKQOASgDU2fwtiZ538.jpg",
            "title": "From Here to Eternity",
            "vote_average": 7.7999999999999998,
            "vote_count": 2
        },
        {
            "backdrop_path": "/pGF0cu8ksgqgnSC4fmxkIvKLkMY.jpg",
            "id": 27191,
            "original_title": "The Greatest Show On Earth",
            "release_date": "1952-01-10",
            "poster_path": "/q24qoAxDAjE3XnxPYnCnd9WgOul.jpg",
            "title": "The Greatest Show On Earth",
            "vote_average": 5.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/bX1cRtMnTIKnjkXteoB5ZtbOPOu.jpg",
            "id": 2769,
            "original_title": "An American in Paris",
            "release_date": "1951-10-04",
            "poster_path": "/t3DBgrq1Qj2vpsMrSczmCVhH9Kp.jpg",
            "title": "An American in Paris",
            "vote_average": 9.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/gt7HbwIA5xS1s8jrjy18t3Pfnvz.jpg",
            "id": 705,
            "original_title": "All About Eve",
            "release_date": "1950-10-13",
            "poster_path": "/pCA57auzcoqNUpaP2XrxoNqexX5.jpg",
            "title": "All About Eve",
            "vote_average": 8.0,
            "vote_count": 2
        },
        {
            "backdrop_path": "/m0JNimkvw3LeRBc0SrckkW5JuaK.jpg",
            "id": 25430,
            "original_title": "All The King's Men",
            "release_date": "1949-11-08",
            "poster_path": "/xjICuR5RauJcZDNjLV5EvaPXhmN.jpg",
            "title": "All The King's Men",
            "vote_average": 7.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/2JJSyQX2elrTY7sqHwCl1xrsCdy.jpg",
            "id": 23383,
            "original_title": "Hamlet",
            "release_date": "1948-05-04",
            "poster_path": "/uiVgc8bCQm6PvQtGG0G1o41Fg4i.jpg",
            "title": "Hamlet",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/3DNb1C2NHf5Sbrk5LbuNJydTjXE.jpg",
            "id": 33667,
            "original_title": "Gentleman's Agreement",
            "release_date": "1947-11-11",
            "poster_path": "/zKdVejqnpbWCyoQnudb8R0o9bMx.jpg",
            "title": "Gentleman's Agreement",
            "vote_average": 7.7000000000000002,
            "vote_count": 2
        },
        {
            "backdrop_path": "/kLTBdVlZuszlIqir4W4jOWNtbbQ.jpg",
            "id": 887,
            "original_title": "The Best Years of Our Lives",
            "release_date": "1946-11-21",
            "poster_path": "/iPOzoadV5QlkT1LibDhlidSQYkM.jpg",
            "title": "The Best Years of Our Lives",
            "vote_average": 10.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/rLegRrtRlZwKbqLs9H1bcTPT7Gi.jpg",
            "id": 28580,
            "original_title": "The Lost Weekend",
            "release_date": "1945-11-16",
            "poster_path": "/4oLDY92VXJxBFu4VILtyGnAeYzH.jpg",
            "title": "The Lost Weekend",
            "vote_average": 8.0,
            "vote_count": 2
        },
        {
            "backdrop_path": "/vuYHS9E4ru61uO5DuGCGUsYopu1.jpg",
            "id": 17661,
            "original_title": "Going My Way",
            "release_date": "1944-05-03",
            "poster_path": "/jfEPIHwGTT4tfTv8PJsCamxWjuN.jpg",
            "title": "Going My Way",
            "vote_average": 7.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/xRqsFFteJrvLHxswk78NzU7zOrU.jpg",
            "id": 289,
            "original_title": "Casablanca",
            "release_date": "1942-11-26",
            "poster_path": "/sm1QVZu5RKe1vXVHZooo4SZyHMx.jpg",
            "title": "Casablanca",
            "vote_average": 8.5999999999999996,
            "vote_count": 29
        },
        {
            "backdrop_path": "/c6NeHDtEl5PLvyNUZPAJRWDYAlx.jpg",
            "id": 27367,
            "original_title": "Mrs. Miniver",
            "release_date": "1942-06-04",
            "poster_path": "/zO1v46d5JNpssbu5ng6QZIQgF6Y.jpg",
            "title": "Mrs. Miniver",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/gfOagwHX2LGlfbRoIgCkVfNH8XT.jpg",
            "id": 43266,
            "original_title": "How Green Was My Valley",
            "release_date": "1941-10-28",
            "poster_path": "/iTm9Qiushu4kxYWhkBUn1kDr85x.jpg",
            "title": "How Green Was My Valley",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/ao0OWpQPMy3lagLwksWyciO6Iaj.jpg",
            "id": 223,
            "original_title": "Rebecca",
            "release_date": "1940-04-12",
            "poster_path": "/DYIabC5IxoeRy06wGH9pSjEgAC.jpg",
            "title": "Rebecca",
            "vote_average": 7.9000000000000004,
            "vote_count": 6
        },
        {
            "backdrop_path": "/bGRUMgSvs6wzYQRqehY4Fsup4f1.jpg",
            "id": 770,
            "original_title": "Gone with the Wind",
            "release_date": "1939-12-15",
            "poster_path": "/lqPnvmaX4oZY9teAOT7M0txCLkS.jpg",
            "title": "Gone with the Wind",
            "vote_average": 9.5999999999999996,
            "vote_count": 5
        },
        {
            "backdrop_path": "/w2GoONlwGRuf4Z5aQhvruVmlcSs.jpg",
            "id": 34106,
            "original_title": "You Can't Take It with You",
            "release_date": "1938-08-23",
            "poster_path": "/oqWTDqBDYOFuheepreZ1zvBLVhd.jpg",
            "title": "You Can't Take It with You",
            "vote_average": 8.3000000000000007,
            "vote_count": 2
        },
        {
            "backdrop_path": "/2Z9hu3pAr6UUmztRJdxUE4eRHWt.jpg",
            "id": 43278,
            "original_title": "The Life of Emile Zola",
            "release_date": "1937-10-02",
            "poster_path": "/idWKOZ7cUwVn6Ow4qr2bg5rnA9.jpg",
            "title": "The Life of Emile Zola",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/zrZ90x3TFnt2HAj2OjqKhQQWruz.jpg",
            "id": 43277,
            "original_title": "The Great Ziegfeld",
            "release_date": "1936-04-08",
            "poster_path": "/g9mSfo4VdPLi5NDHzgffA3Q6FSa.jpg",
            "title": "The Great Ziegfeld",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/yJdiJtbv62zuBd42eA66yBX8hfM.jpg",
            "id": 12311,
            "original_title": "Mutiny on the Bounty",
            "release_date": "1935-11-08",
            "poster_path": "/4yKtK0WMhSR3bNnK5Gi0jeO9UYw.jpg",
            "title": "Mutiny on the Bounty",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/rMEcrp9ECschG3kSIZHoUuJAmRk.jpg",
            "id": 3078,
            "original_title": "It Happened One Night",
            "release_date": "1934-02-22",
            "poster_path": "/5DaTmLlEQ8Zbclj53dGy7xssfxq.jpg",
            "title": "It Happened One Night",
            "vote_average": 9.0999999999999996,
            "vote_count": 4
        },
        {
            "backdrop_path": "/ozoGuzZpMaiCKVYHTMVdFtuqnZo.jpg",
            "id": 56164,
            "original_title": "Cavalcade",
            "release_date": "1933-01-01",
            "poster_path": "/jKsO5XlaL7hJWchYBUYmpYDyf3p.jpg",
            "title": "Cavalcade",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/uiIwVCclBveUt2PVO8F7xkPe5Cj.jpg",
            "id": 33680,
            "original_title": "Grand Hotel",
            "release_date": "1932-04-14",
            "poster_path": "/zyHtotFohx0wXA7wqx2gylyUqUh.jpg",
            "title": "Grand Hotel",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/vD2YkSnsXG52pOhoIulDMQCE0lL.jpg",
            "id": 42861,
            "original_title": "Cimarron",
            "release_date": "1931-01-01",
            "poster_path": "/kS3h9fotUilbnqxztTVWGNshUu9.jpg",
            "title": "Cimarron",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/cmAHUFBqg8VO0InX9QdDTZQSg9H.jpg",
            "id": 143,
            "original_title": "All Quiet on the Western Front",
            "release_date": "1930-04-21",
            "poster_path": "/sDu5fHsfPafkHImwSEGoKjhwFCO.jpg",
            "title": "All Quiet on the Western Front",
            "vote_average": 7.0999999999999996,
            "vote_count": 4
        },
        {
            "backdrop_path": "/69NfvNrpPI6bjj3Txp2cDsRZ5se.jpg",
            "id": 65203,
            "original_title": "The Broadway Melody",
            "release_date": "1929-06-06",
            "poster_path": "/dJxFUKiO7JTDBSUr4Nzct4iJikX.jpg",
            "title": "The Broadway Melody",
            "vote_average": 7.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/xpUbeDxBAGG30qtVn62lLU2S5SD.jpg",
            "id": 28966,
            "original_title": "Wings",
            "release_date": "1927-08-12",
            "poster_path": "/negcQiFVemelvl3RKv2iLj1MH17.jpg",
            "title": "Wings",
            "vote_average": 8.9000000000000004,
            "vote_count": 4
        }
    ],
    "item_count": 84,
    "iso_639_1": "en",
    "name": "Best Picture Winners - The Academy Awards",
    "poster_path": "/efBm2Nm2v5kQnO0w3hYcW6hVsJU.jpg"
}

POST

/3/list

This method lets users create a new list. A valid session id is required.

Required Parameters
api_key
session_id
Required JSON Body
name
description
Optional JSON Body
language

Response

200 (OK)
    Content-Type: application/json
    
{
    "status_code": 1,
    "status_message": "Success",
    "list_id": "50941077760ee35e1500000c"
}

POST

/3/list/{id}/add_item

This method lets users add new movies to a list that they created. A valid session id is required.

Required Parameters
api_key
session_id
Required JSON Body
media_idA movie id

Response

201 (Created)
    Content-Type: application/json
    
{
    "status_code": 12,
    "status_message": "The item/record was updated successfully"
}

POST

/3/list/{id}/remove_item

This method lets users delete movies from a list that they created. A valid session id is required.

Required Parameters
api_key
session_id
Required JSON Body
media_idA movie id

Response

201 (Created)
    Content-Type: application/json
    
{
    "status_code": 12,
    "status_message": "The item/record was updated successfully"
}

DELETE

/3/list/{id}

This method lets users delete a list that they created. A valid session id is required.

Required Parameters
api_key
session_id

Response

200 (OK)
    Content-Type: application/json
    
{
    "status_code": 13,
    "status_message": "The item/record was deleted successfully"
}

Companies

GET

/3/company/{id}

This method is used to retrieve all of the basic information about a company.

Required Parameters
api_key
Optional Parameters
append_to_responseComma separated, any company method

Response

200 (OK)
    ETag: "8a58d391bb3dbd16d2a659f7d8823529"
    Content-Type: application/json
    
{
    "description": null,
    "headquarters": "San Francisco, California",
    "homepage": "http://www.lucasfilm.com",
    "id": 1,
    "logo_path": "/8rUnVMVZjlmQsJ45UGotD0Uznxj.png",
    "name": "Lucasfilm",
    "parent_company": null
}

GET

/3/company/{id}/movies

Get the list of movies associated with a particular company.

Required Parameters
api_key
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.
append_to_responseComma separated, any company method

Response

200 (OK)
    ETag: "0d4728bc0fc91d3418755c39f0a78511"
    Content-Type: application/json
    
{
    "id": 1,
    "page": 1,
    "results": [
        {
            "backdrop_path": "/gmLMaDXi4lFWG8WitaCYOJS5GtL.jpg",
            "id": 12180,
            "original_title": "Star Wars: The Clone Wars",
            "release_date": "2008-08-15",
            "poster_path": "/xd6yhmtS6mEURZLwUDT5raEMbf.jpg",
            "title": "Star Wars: The Clone Wars",
            "vote_average": 7.7000000000000002,
            "vote_count": 12
        },
        {
            "backdrop_path": "/alNMTW47nZABwvwz3Gjwarl4btE.jpg",
            "id": 217,
            "original_title": "Indiana Jones and the Kingdom of the Crystal Skull",
            "release_date": "2008-05-22",
            "poster_path": "/6Lv49E0aEusW9vKEMgQgLdetlmO.jpg",
            "title": "Indiana Jones and the Kingdom of the Crystal Skull",
            "vote_average": 6.7000000000000002,
            "vote_count": 48
        },
        {
            "backdrop_path": "/gZxY7VDOI48gjhnDJK1E6n9uHWk.jpg",
            "id": 42979,
            "original_title": "Robot Chicken: Star Wars",
            "release_date": "2007-07-17",
            "poster_path": "/3vcBL7zNVMhLdFSEh3xiquhdp1x.jpg",
            "title": "Robot Chicken: Star Wars",
            "vote_average": 8.0,
            "vote_count": 1
        },
        {
            "backdrop_path": "/zHrxWn6P6Zjip9fJmmuEbzDd76o.jpg",
            "id": 1895,
            "original_title": "Star Wars: Episode III - Revenge of the Sith",
            "release_date": "2005-05-19",
            "poster_path": "/tgr5Pdy7ehZYBqBkN2K7Q02xgOb.jpg",
            "title": "Star Wars: Episode III - Revenge of the Sith",
            "vote_average": 7.9000000000000004,
            "vote_count": 59
        },
        {
            "backdrop_path": "/560F7BPaxRy8BsOfVU6cW4ivM46.jpg",
            "id": 1894,
            "original_title": "Star Wars: Episode II - Attack of the Clones",
            "release_date": "2002-05-16",
            "poster_path": "/2vcNFtrZXNwIcBgH5e2xXCmVR8t.jpg",
            "title": "Star Wars: Episode II - Attack of the Clones",
            "vote_average": 7.5999999999999996,
            "vote_count": 69
        },
        {
            "backdrop_path": "/4KD7RynRLIGqWjDvwwta5iBDvgS.jpg",
            "id": 47025,
            "original_title": "R2-D2: Beneath the Dome",
            "release_date": "2001-11-25",
            "poster_path": "/wTqLGbnUn5yMgh3fD3HUWrv0gKl.jpg",
            "title": "R2-D2: Beneath the Dome",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/rtG5TRrQXf11jlO9WqcYTq46jKa.jpg",
            "id": 1893,
            "original_title": "Star Wars: Episode I - The Phantom Menace",
            "release_date": "1999-05-19",
            "poster_path": "/n8V09dDc02KsSN6Q4hC2BX6hN8X.jpg",
            "title": "Star Wars: Episode I - The Phantom Menace",
            "vote_average": 7.2000000000000002,
            "vote_count": 74
        },
        {
            "backdrop_path": "/sBAyZPvS3RmX6SFr0fJ9bDeRmP5.jpg",
            "id": 74823,
            "original_title": "Star Wars: Droids - Treasure of the Hidden Planet",
            "release_date": "1997-02-11",
            "poster_path": "/sFQatyz7dCONSlQg6NP3F3kJ0QP.jpg",
            "title": "Star Wars: Droids - Treasure of the Hidden Planet",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": null,
            "id": 75380,
            "original_title": "Star Wars: Droids - The Pirate and the Prince",
            "release_date": "1997-02-11",
            "poster_path": "/tzMyVe7heytMepJJCJq21n6FGWV.jpg",
            "title": "Star Wars: Droids - The Pirate and the Prince",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "backdrop_path": "/pY7VAT4gtvVy38UuVEPhTPyfiYJ.jpg",
            "id": 89,
            "original_title": "Indiana Jones and the Last Crusade",
            "release_date": "1989-05-24",
            "poster_path": "/1xlQmxqKbkCb2THC9rwgr75p25B.jpg",
            "title": "Indiana Jones and the Last Crusade",
            "vote_average": 8.8000000000000007,
            "vote_count": 58
        },
        {
            "backdrop_path": "/n1wLikbs9EjLbZXOPcymEsrJctZ.jpg",
            "id": 847,
            "original_title": "Willow",
            "release_date": "1988-05-20",
            "poster_path": "/5iara9JMotSn9r7TM4tL7LFyfdu.jpg",
            "title": "Willow",
            "vote_average": 8.0,
            "vote_count": 11
        },
        {
            "backdrop_path": "/9zNu80EjtkvDImE4goHFsI6z3JW.jpg",
            "id": 10372,
            "original_title": "Ewoks: The Battle for Endor",
            "release_date": "1985-11-24",
            "poster_path": "/qKWa0i67AY2XNzvg7yXfGLX1Vcf.jpg",
            "title": "Ewoks: The Battle for Endor",
            "vote_average": 10.0,
            "vote_count": 2
        },
        {
            "backdrop_path": "/dmLfnPklVIXpOYbJaUKF3pgXsWk.jpg",
            "id": 1884,
            "original_title": "The Ewok Adventure",
            "release_date": "1984-11-25",
            "poster_path": "/y6HdTlqgcZ6EdsKR1uP03WgBe0C.jpg",
            "title": "The Ewok Adventure",
            "vote_average": 10.0,
            "vote_count": 4
        },
        {
            "backdrop_path": "/uG6AChg2FA3EmRuJDezDqoIpQzB.jpg",
            "id": 87,
            "original_title": "Indiana Jones and the Temple of Doom",
            "release_date": "1984-05-23",
            "poster_path": "/c8wjjTnqxnG835iSEeWUJJifSVp.jpg",
            "title": "Indiana Jones and the Temple of Doom",
            "vote_average": 7.7999999999999998,
            "vote_count": 40
        },
        {
            "backdrop_path": "/i4Qh3cHNS3vcJAJoGoVSXePMGQV.jpg",
            "id": 36751,
            "original_title": "Twice Upon a Time",
            "release_date": "1983-08-05",
            "poster_path": "/r9kyqDYhzgelcnSakBp0w5C5i7z.jpg",
            "title": "Twice Upon a Time",
            "vote_average": 8.5,
            "vote_count": 1
        },
        {
            "backdrop_path": "/bvJOpyHYWACDusvQvXxKEHFNjce.jpg",
            "id": 1892,
            "original_title": "Star Wars: Episode VI - Return of the Jedi",
            "release_date": "1983-05-25",
            "poster_path": "/jx5p0aHlbPXqe3AH9G15NvmWaqQ.jpg",
            "title": "Star Wars: Episode VI - Return of the Jedi",
            "vote_average": 8.6999999999999993,
            "vote_count": 105
        },
        {
            "backdrop_path": "/i5ubqxYkkqZpwgw6nHHUudOuGTh.jpg",
            "id": 85,
            "original_title": "Raiders of the Lost Ark",
            "release_date": "1981-06-12",
            "poster_path": "/tjGpsV0vKKHECtdsQoVwIXsDj3.jpg",
            "title": "Raiders of the Lost Ark",
            "vote_average": 8.6999999999999993,
            "vote_count": 59
        },
        {
            "backdrop_path": "/AkE7LQs2hPMG5tpWYcum847Knre.jpg",
            "id": 1891,
            "original_title": "Star Wars: Episode V - The Empire Strikes Back",
            "release_date": "1980-05-21",
            "poster_path": "/dKz98Lyda4m1QaUUUsUpXFpYCXN.jpg",
            "title": "Star Wars: Episode V - The Empire Strikes Back",
            "vote_average": 9.0,
            "vote_count": 144
        },
        {
            "backdrop_path": "/r0v9dayXd1IH5WPWFBWv52tGHkB.jpg",
            "id": 11,
            "original_title": "Star Wars: Episode IV - A New Hope",
            "release_date": "1977-05-25",
            "poster_path": "/tvSlBzAdRE29bZe5yYWrJ2ds137.jpg",
            "title": "Star Wars: Episode IV - A New Hope",
            "vote_average": 9.0,
            "vote_count": 149
        },
        {
            "backdrop_path": "/qCECROwx3TRUEgoZv2Mz2D723QC.jpg",
            "id": 10,
            "original_title": "Star Wars Collection",
            "release_date": null,
            "poster_path": "/ghd5zOQnDaDW1mxO7R5fXXpZMu.jpg",
            "title": "Star Wars Collection",
            "vote_average": 0.0,
            "vote_count": 0
        }
    ],
    "total_pages": 1,
    "total_results": 20
}

Genres

GET

/3/genre/list

Get the list of genres.

Required Parameters
api_key
Optional Parameters
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "genres": [
        {
            "id": 28,
            "name": "Action"
        },
        {
            "id": 12,
            "name": "Adventure"
        },
        {
            "id": 16,
            "name": "Animation"
        },
        {
            "id": 35,
            "name": "Comedy"
        },
        {
            "id": 80,
            "name": "Crime"
        },
        {
            "id": 105,
            "name": "Disaster"
        },
        {
            "id": 99,
            "name": "Documentary"
        },
        {
            "id": 18,
            "name": "Drama"
        },
        {
            "id": 82,
            "name": "Eastern"
        },
        {
            "id": 2916,
            "name": "Erotic"
        },
        {
            "id": 10751,
            "name": "Family"
        },
        {
            "id": 10750,
            "name": "Fan Film"
        },
        {
            "id": 14,
            "name": "Fantasy"
        },
        {
            "id": 10753,
            "name": "Film Noir"
        },
        {
            "id": 10769,
            "name": "Foreign"
        },
        {
            "id": 36,
            "name": "History"
        },
        {
            "id": 10595,
            "name": "Holiday"
        },
        {
            "id": 27,
            "name": "Horror"
        },
        {
            "id": 10756,
            "name": "Indie"
        },
        {
            "id": 10402,
            "name": "Music"
        },
        {
            "id": 22,
            "name": "Musical"
        },
        {
            "id": 9648,
            "name": "Mystery"
        },
        {
            "id": 10754,
            "name": "Neo-noir"
        },
        {
            "id": 1115,
            "name": "Road Movie"
        },
        {
            "id": 10749,
            "name": "Romance"
        },
        {
            "id": 878,
            "name": "Science Fiction"
        },
        {
            "id": 10755,
            "name": "Short"
        },
        {
            "id": 9805,
            "name": "Sport"
        },
        {
            "id": 10758,
            "name": "Sporting Event"
        },
        {
            "id": 10757,
            "name": "Sports Film"
        },
        {
            "id": 10748,
            "name": "Suspense"
        },
        {
            "id": 10770,
            "name": "TV movie"
        },
        {
            "id": 53,
            "name": "Thriller"
        },
        {
            "id": 10752,
            "name": "War"
        },
        {
            "id": 37,
            "name": "Western"
        }
    ]
}

GET

/3/genre/{id}/movies

Get the list of movies for a particular genre by id. By default, only movies with 10 or more votes are included.

Required Parameters
api_key
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.
include_all_moviesToggle the inclusion of all movies and not just those with 10 or more ratings. Expected value is: true or false
include_adultToggle the inclusion of adult titles. Expected value is: true or false

Response

200 (OK)
    Content-Type: application/json
    
{
    "id": 18,
    "page": 1,
    "results": [
        {
            "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg",
            "id": 238,
            "original_title": "The Godfather",
            "release_date": "1972-03-24",
            "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg",
            "title": "The Godfather",
            "vote_average": 9.1999999999999993,
            "vote_count": 125
        },
        {
            "backdrop_path": "/3R6vDW1yBBzejsma8SzzWuxj2AE.jpg",
            "id": 311,
            "original_title": "Once Upon a Time in America",
            "release_date": "1984-02-17",
            "poster_path": "/fqP3Q7DWMFqW7mh11hWXbNwN9rz.jpg",
            "title": "Once Upon a Time in America",
            "vote_average": 9.0999999999999996,
            "vote_count": 34
        },
        {
            "backdrop_path": "/jWDegvAE8XO2XDUHP9eQYlepJv1.jpg",
            "id": 240,
            "original_title": "The Godfather: Part II",
            "release_date": "1974-12-20",
            "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg",
            "title": "The Godfather: Part II",
            "vote_average": 9.0999999999999996,
            "vote_count": 61
        },
        {
            "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "id": 550,
            "original_title": "Fight Club",
            "release_date": "1999-10-15",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "title": "Fight Club",
            "vote_average": 9.0999999999999996,
            "vote_count": 175
        },
        {
            "backdrop_path": "/mpYypl40Wg2njmuflqEC3Bs3cFB.jpg",
            "id": 19,
            "original_title": "Metropolis",
            "release_date": "1927-03-13",
            "poster_path": "/6oyiv4kiTtroUr42H4kqNwg60rj.jpg",
            "title": "Metropolis",
            "vote_average": 9.0,
            "vote_count": 23
        },
        {
            "backdrop_path": "/AplR1QRswlXiM65GoifX8sDadME.jpg",
            "id": 213,
            "original_title": "North by Northwest",
            "release_date": "1959-07-17",
            "poster_path": "/rEHP8ylmL3pcsDUEA6Z5qhajYui.jpg",
            "title": "North by Northwest",
            "vote_average": 9.0,
            "vote_count": 28
        },
        {
            "backdrop_path": "/qrI7ZgBgBMIsJSbhyezrfP44frb.jpg",
            "id": 670,
            "original_title": "올드보이",
            "release_date": "2003-11-21",
            "poster_path": "/jB7ol6ry8dlqMp6kKlKHLfPke4e.jpg",
            "title": "Oldboy",
            "vote_average": 9.0,
            "vote_count": 45
        },
        {
            "backdrop_path": "/fRQATr704bMpLc5Skzpj3V9b2iW.jpg",
            "id": 197,
            "original_title": "Braveheart",
            "release_date": "1995-05-24",
            "poster_path": "/4T4xQJXSdTNbzUrlT6Eh13kiy5H.jpg",
            "title": "Braveheart",
            "vote_average": 9.0,
            "vote_count": 65
        },
        {
            "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg",
            "id": 122,
            "original_title": "The Lord of the Rings: The Return of the King",
            "release_date": "2003-12-17",
            "poster_path": "/j6NCjU6Zh7SkfIeN5zDaoTmBn4m.jpg",
            "title": "The Lord of the Rings: The Return of the King",
            "vote_average": 9.0,
            "vote_count": 135
        },
        {
            "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg",
            "id": 78,
            "original_title": "Blade Runner",
            "release_date": "1982-06-25",
            "poster_path": "/ewq1lwhOT8GqBcQH1w8D1BagwTh.jpg",
            "title": "Blade Runner",
            "vote_average": 9.0,
            "vote_count": 147
        },
        {
            "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg",
            "id": 278,
            "original_title": "The Shawshank Redemption",
            "release_date": "1994-09-14",
            "poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg",
            "title": "The Shawshank Redemption",
            "vote_average": 9.0,
            "vote_count": 173
        },
        {
            "backdrop_path": "/8oCkj3t9yvT363svYMssXqGxTRf.jpg",
            "id": 824,
            "original_title": "Moulin Rouge!",
            "release_date": "2001-05-16",
            "poster_path": "/vgYM0ZDoeQKZEGxrGAO221J5rIG.jpg",
            "title": "Moulin Rouge!",
            "vote_average": 8.9000000000000004,
            "vote_count": 11
        },
        {
            "backdrop_path": "/6yFtd1s69XRTGIOD6yIoZ3EebKx.jpg",
            "id": 7549,
            "original_title": "Fearless",
            "release_date": "2006-01-26",
            "poster_path": "/5gqM2IUANPvM5JnB4m5wePhH3Nt.jpg",
            "title": "Fearless",
            "vote_average": 8.9000000000000004,
            "vote_count": 18
        },
        {
            "backdrop_path": "/xATZyEpnZ0Z0iO9z5K8RZsraGKI.jpg",
            "id": 840,
            "original_title": "Close Encounters of the Third Kind",
            "release_date": "1977-11-16",
            "poster_path": "/mABOVIUl5lB0WF4HG28rfamgxG1.jpg",
            "title": "Close Encounters of the Third Kind",
            "vote_average": 8.9000000000000004,
            "vote_count": 19
        },
        {
            "backdrop_path": "/tEm71iwofHgNcqb0Fn1AyH11BNl.jpg",
            "id": 11036,
            "original_title": "The Notebook",
            "release_date": "2004-06-25",
            "poster_path": "/gMfstesBXKdsHToAUXVPHujUDfb.jpg",
            "title": "The Notebook",
            "vote_average": 8.9000000000000004,
            "vote_count": 20
        },
        {
            "backdrop_path": "/mtJrV7i76PtXJMmWz3tu6dWav6n.jpg",
            "id": 510,
            "original_title": "One Flew Over the Cuckoo's Nest",
            "release_date": "1975-11-19",
            "poster_path": "/bYZumDpc1o0adyuAZjXqgkZ182m.jpg",
            "title": "One Flew Over the Cuckoo's Nest",
            "vote_average": 8.9000000000000004,
            "vote_count": 38
        },
        {
            "backdrop_path": "/xDEOxA01480uLTWuvQCw61VmDBt.jpg",
            "id": 769,
            "original_title": "Goodfellas",
            "release_date": "1990-09-12",
            "poster_path": "/ddMDzejWFbSas5ipUCUCjAlD5dI.jpg",
            "title": "Goodfellas",
            "vote_average": 8.9000000000000004,
            "vote_count": 39
        },
        {
            "backdrop_path": "/9yJehIjvR7ULOLxeDJoth4kDDNe.jpg",
            "id": 5915,
            "original_title": "Into the Wild",
            "release_date": "2007-09-21",
            "poster_path": "/lHyYgaocXR6KcJLxVmxZDj115hH.jpg",
            "title": "Into the Wild",
            "vote_average": 8.9000000000000004,
            "vote_count": 41
        },
        {
            "backdrop_path": "/k4BAPrE5WkNLvpsPsiMfu8W4Zyi.jpg",
            "id": 598,
            "original_title": "Cidade de Deus",
            "release_date": "2002-05-18",
            "poster_path": "/gCqnQaq8T4CfioP9uETLx9iMJF4.jpg",
            "title": "City of God",
            "vote_average": 8.9000000000000004,
            "vote_count": 41
        },
        {
            "backdrop_path": "/ooqPNPS2WdBH7DgIF4em9e0nEld.jpg",
            "id": 857,
            "original_title": "Saving Private Ryan",
            "release_date": "1998-07-24",
            "poster_path": "/35CMz4t7PuUiQqt5h4u5nbrXZlF.jpg",
            "title": "Saving Private Ryan",
            "vote_average": 8.9000000000000004,
            "vote_count": 83
        }
    ],
    "total_pages": 25,
    "total_results": 499
}

Keywords

GET

/3/keyword/{id}

Get the basic information for a specific keyword id.

Required Parameters
api_key

Response

200 (OK)
    Content-Type: application/json
    
{
    "id": 1721,
    "name": "fight"
}

GET

/3/keyword/{id}/movies

Get the list of movies for a particular keyword by id.

Required Parameters
api_key
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "id": 1721,
    "page": 1,
    "results": [
        {
            "backdrop_path": "/6xKCYgH16UuwEGAyroLU6p8HLIn.jpg",
            "id": 238,
            "original_title": "The Godfather",
            "release_date": "1972-03-24",
            "poster_path": "/d4KNaTrltq6bpkFS01pYtyXa09m.jpg",
            "title": "The Godfather",
            "vote_average": 9.1999999999999993,
            "vote_count": 125
        },
        {
            "backdrop_path": "/3R6vDW1yBBzejsma8SzzWuxj2AE.jpg",
            "id": 311,
            "original_title": "Once Upon a Time in America",
            "release_date": "1984-02-17",
            "poster_path": "/fqP3Q7DWMFqW7mh11hWXbNwN9rz.jpg",
            "title": "Once Upon a Time in America",
            "vote_average": 9.0999999999999996,
            "vote_count": 34
        },
        {
            "backdrop_path": "/jWDegvAE8XO2XDUHP9eQYlepJv1.jpg",
            "id": 240,
            "original_title": "The Godfather: Part II",
            "release_date": "1974-12-20",
            "poster_path": "/tHbMIIF51rguMNSastqoQwR0sBs.jpg",
            "title": "The Godfather: Part II",
            "vote_average": 9.0999999999999996,
            "vote_count": 61
        },
        {
            "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "id": 550,
            "original_title": "Fight Club",
            "release_date": "1999-10-15",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "title": "Fight Club",
            "vote_average": 9.0999999999999996,
            "vote_count": 175
        },
        {
            "backdrop_path": "/mpYypl40Wg2njmuflqEC3Bs3cFB.jpg",
            "id": 19,
            "original_title": "Metropolis",
            "release_date": "1927-03-13",
            "poster_path": "/6oyiv4kiTtroUr42H4kqNwg60rj.jpg",
            "title": "Metropolis",
            "vote_average": 9.0,
            "vote_count": 23
        },
        {
            "backdrop_path": "/AplR1QRswlXiM65GoifX8sDadME.jpg",
            "id": 213,
            "original_title": "North by Northwest",
            "release_date": "1959-07-17",
            "poster_path": "/rEHP8ylmL3pcsDUEA6Z5qhajYui.jpg",
            "title": "North by Northwest",
            "vote_average": 9.0,
            "vote_count": 28
        },
        {
            "backdrop_path": "/qrI7ZgBgBMIsJSbhyezrfP44frb.jpg",
            "id": 670,
            "original_title": "올드보이",
            "release_date": "2003-11-21",
            "poster_path": "/jB7ol6ry8dlqMp6kKlKHLfPke4e.jpg",
            "title": "Oldboy",
            "vote_average": 9.0,
            "vote_count": 45
        },
        {
            "backdrop_path": "/fRQATr704bMpLc5Skzpj3V9b2iW.jpg",
            "id": 197,
            "original_title": "Braveheart",
            "release_date": "1995-05-24",
            "poster_path": "/4T4xQJXSdTNbzUrlT6Eh13kiy5H.jpg",
            "title": "Braveheart",
            "vote_average": 9.0,
            "vote_count": 65
        },
        {
            "backdrop_path": "/8BPZO0Bf8TeAy8znF43z8soK3ys.jpg",
            "id": 122,
            "original_title": "The Lord of the Rings: The Return of the King",
            "release_date": "2003-12-17",
            "poster_path": "/j6NCjU6Zh7SkfIeN5zDaoTmBn4m.jpg",
            "title": "The Lord of the Rings: The Return of the King",
            "vote_average": 9.0,
            "vote_count": 135
        },
        {
            "backdrop_path": "/tv8J6uCTKsTlASa8luJqrFiJlBX.jpg",
            "id": 78,
            "original_title": "Blade Runner",
            "release_date": "1982-06-25",
            "poster_path": "/ewq1lwhOT8GqBcQH1w8D1BagwTh.jpg",
            "title": "Blade Runner",
            "vote_average": 9.0,
            "vote_count": 147
        },
        {
            "backdrop_path": "/xBKGJQsAIeweesB79KC89FpBrVr.jpg",
            "id": 278,
            "original_title": "The Shawshank Redemption",
            "release_date": "1994-09-14",
            "poster_path": "/9O7gLzmreU0nGkIB6K3BsJbzvNv.jpg",
            "title": "The Shawshank Redemption",
            "vote_average": 9.0,
            "vote_count": 173
        },
        {
            "backdrop_path": "/8oCkj3t9yvT363svYMssXqGxTRf.jpg",
            "id": 824,
            "original_title": "Moulin Rouge!",
            "release_date": "2001-05-16",
            "poster_path": "/vgYM0ZDoeQKZEGxrGAO221J5rIG.jpg",
            "title": "Moulin Rouge!",
            "vote_average": 8.9000000000000004,
            "vote_count": 11
        },
        {
            "backdrop_path": "/6yFtd1s69XRTGIOD6yIoZ3EebKx.jpg",
            "id": 7549,
            "original_title": "Fearless",
            "release_date": "2006-01-26",
            "poster_path": "/5gqM2IUANPvM5JnB4m5wePhH3Nt.jpg",
            "title": "Fearless",
            "vote_average": 8.9000000000000004,
            "vote_count": 18
        },
        {
            "backdrop_path": "/xATZyEpnZ0Z0iO9z5K8RZsraGKI.jpg",
            "id": 840,
            "original_title": "Close Encounters of the Third Kind",
            "release_date": "1977-11-16",
            "poster_path": "/mABOVIUl5lB0WF4HG28rfamgxG1.jpg",
            "title": "Close Encounters of the Third Kind",
            "vote_average": 8.9000000000000004,
            "vote_count": 19
        },
        {
            "backdrop_path": "/tEm71iwofHgNcqb0Fn1AyH11BNl.jpg",
            "id": 11036,
            "original_title": "The Notebook",
            "release_date": "2004-06-25",
            "poster_path": "/gMfstesBXKdsHToAUXVPHujUDfb.jpg",
            "title": "The Notebook",
            "vote_average": 8.9000000000000004,
            "vote_count": 20
        },
        {
            "backdrop_path": "/mtJrV7i76PtXJMmWz3tu6dWav6n.jpg",
            "id": 510,
            "original_title": "One Flew Over the Cuckoo's Nest",
            "release_date": "1975-11-19",
            "poster_path": "/bYZumDpc1o0adyuAZjXqgkZ182m.jpg",
            "title": "One Flew Over the Cuckoo's Nest",
            "vote_average": 8.9000000000000004,
            "vote_count": 38
        },
        {
            "backdrop_path": "/xDEOxA01480uLTWuvQCw61VmDBt.jpg",
            "id": 769,
            "original_title": "Goodfellas",
            "release_date": "1990-09-12",
            "poster_path": "/ddMDzejWFbSas5ipUCUCjAlD5dI.jpg",
            "title": "Goodfellas",
            "vote_average": 8.9000000000000004,
            "vote_count": 39
        },
        {
            "backdrop_path": "/9yJehIjvR7ULOLxeDJoth4kDDNe.jpg",
            "id": 5915,
            "original_title": "Into the Wild",
            "release_date": "2007-09-21",
            "poster_path": "/lHyYgaocXR6KcJLxVmxZDj115hH.jpg",
            "title": "Into the Wild",
            "vote_average": 8.9000000000000004,
            "vote_count": 41
        },
        {
            "backdrop_path": "/k4BAPrE5WkNLvpsPsiMfu8W4Zyi.jpg",
            "id": 598,
            "original_title": "Cidade de Deus",
            "release_date": "2002-05-18",
            "poster_path": "/gCqnQaq8T4CfioP9uETLx9iMJF4.jpg",
            "title": "City of God",
            "vote_average": 8.9000000000000004,
            "vote_count": 41
        },
        {
            "backdrop_path": "/ooqPNPS2WdBH7DgIF4em9e0nEld.jpg",
            "id": 857,
            "original_title": "Saving Private Ryan",
            "release_date": "1998-07-24",
            "poster_path": "/35CMz4t7PuUiQqt5h4u5nbrXZlF.jpg",
            "title": "Saving Private Ryan",
            "vote_average": 8.9000000000000004,
            "vote_count": 83
        }
    ],
    "total_pages": 5,
    "total_results": 84
}

Discover

GET

/3/discover/movie

Discover movies by different types of data like average rating, number of votes, genres and certifications.

Required Parameters
api_key
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.
sort_byAvailable options are vote_average.desc, vote_average.asc, release_date.desc, release_date.asc, popularity.desc, popularity.asc
include_adultToggle the inclusion of adult titles. Expected value is a boolean, true or false
yearFilter the results release dates to matches that include this value. Expected value is a year.
primary_release_yearFilter the results so that only the primary release date year has this value. Expected value is a year.
vote_count.gteOnly include movies that are equal to, or have a vote count higher than this value. Expected value is an integer.
vote_average.gteOnly include movies that are equal to, or have a higher average rating than this value. Expected value is a float.
with_genresOnly include movies with the specified genres. Expected value is an integer (the id of a genre). Multiple values can be specified. Comma separated indicates an 'AND' query, while a pipe (|) separated value indicates an 'OR'.
release_date.gteThe minimum release to include. Expected format is YYYY-MM-DD.
release_date.lteThe maximum release to include. Expected format is YYYY-MM-DD.
certification_countryOnly include movies with certifications for a specific country. When this value is specified, 'certification.lte' is required. A ISO 3166-1 is expected.
certification.lteOnly include movies with this certification and lower. Expected value is a valid certification for the specificed 'certification_country'.
with_companiesFilter movies to include a specific company. Expected valu is an integer (the id of a company). They can be comma separated to indicate an 'AND' query.

Response

200 (OK)
    Content-Type: application/json
    
{
  "page": 1,
  "results": [
    {
      "adult": false,
      "backdrop_path": "/cKw3HY835PMp6bzse3LMivIY5Nl.jpg",
      "id": 1884,
      "original_title": "The Ewok Adventure",
      "release_date": "1984-11-25",
      "poster_path": "/x2nKP0FCJwNLHgCyUI1cL8bF6nL.jpg",
      "popularity": 0.72905031478,
      "title": "The Ewok Adventure",
      "vote_average": 10.0,
      "vote_count": 4
    },
    {
      "adult": false,
      "backdrop_path": "/s0LjxgmzKdTny2CiuHNBjV8urmf.jpg",
      "id": 1537,
      "original_title": "Changing Lanes",
      "release_date": "2002-04-07",
      "poster_path": "/bbINOtOFyQFAtaKo0fdMKXB1Og5.jpg",
      "popularity": 1.1399252536936,
      "title": "Changing Lanes",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/39R1ItA8srBv07z3ZG6MUA3uD2p.jpg",
      "id": 1672,
      "original_title": "Le Professionnel",
      "release_date": "1981-10-21",
      "poster_path": "/A7Yjc5a1DTvijtaQG08h8ufDQKA.jpg",
      "popularity": 1.55987,
      "title": "The Professional",
      "vote_average": 10.0,
      "vote_count": 2
    },
    {
      "adult": false,
      "backdrop_path": "/7dJLUyCSlYbz822I7FGRrql7gpB.jpg",
      "id": 8427,
      "original_title": "I Spy",
      "release_date": "2002-10-31",
      "poster_path": "/22nUxAkL42Snd8azTlUrpDDtBSh.jpg",
      "popularity": 1.06413962734445,
      "title": "I Spy",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/rUPLEQWvCsYYj8z4vPx1QnezDX5.jpg",
      "id": 16364,
      "original_title": "Robotech: The Shadow Chronicles",
      "release_date": "2007-09-19",
      "poster_path": "/eFRVAKXc31AbsbIJ6JL0QuWTgPe.jpg",
      "popularity": 1.152820462,
      "title": "Robotech: The Shadow Chronicles",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/oiix1SXcy7i3MitqVJor1o9ZSUv.jpg",
      "id": 17264,
      "original_title": "The Black Stallion",
      "release_date": "1979-10-17",
      "poster_path": "/hznqiRVJqwfg0rSMulyRSpXuvGb.jpg",
      "popularity": 0.582087308,
      "title": "The Black Stallion",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/q6CLnjffLrUkfjOuIv3vbhYGAwN.jpg",
      "id": 11176,
      "original_title": "The Muppet Movie",
      "release_date": "1979-05-31",
      "poster_path": "/48Ve7uLDcPJFGaDnmYYdcV3Ve1M.jpg",
      "popularity": 0.834,
      "title": "The Muppet Movie",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/oY5ujxy7jJ8hiHXO8FA39JAKjiy.jpg",
      "id": 10339,
      "original_title": "Moby Dick",
      "release_date": "1956-06-27",
      "poster_path": "/i8u9Gw4EDESLiC902bDQ9MuWg6O.jpg",
      "popularity": 0.58,
      "title": "Moby Dick",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/nQx2Ks3Sl82BygE71BgyaHFlo1a.jpg",
      "id": 10109,
      "original_title": "Fei hap siu baak lung",
      "release_date": "2004-10-28",
      "poster_path": "/JPI3wpmRqYaqv7ey3QnjaVb0ZW.jpg",
      "popularity": 0.44,
      "title": "The White Dragon",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/fWh5gHBl6e9W0bIGEcEaAqgsj5.jpg",
      "id": 11570,
      "original_title": "The Crimson Pirate",
      "release_date": "1952-09-27",
      "poster_path": "/aysnvyXlpqiEPkCn1bbiBqZIgCg.jpg",
      "popularity": 0.4322,
      "title": "The Crimson Pirate",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/nwhHlNlvYj589KpOiX0pzVbbkf6.jpg",
      "id": 11616,
      "original_title": "Nati con la camicia",
      "release_date": "1982-12-31",
      "poster_path": "/gmb1nA58ZH12cGUFMBoR6UDDb0j.jpg",
      "popularity": 1.001322002,
      "title": "Go for It",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/nBz9PJerPhqghjqObFRW0PnaOyA.jpg",
      "id": 12097,
      "original_title": "Pippi Långstrump",
      "release_date": "1969-05-09",
      "poster_path": "/dQwrHaxbM3eAoQQgZakzHKmj8Xh.jpg",
      "popularity": 0.545992,
      "title": "Pippi Longstocking",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/7iQoI61oUOr8tiphzuE4dvUZLCE.jpg",
      "id": 11385,
      "original_title": "Hatari!",
      "release_date": "1962-06-19",
      "poster_path": "/mJwf9AvwjJaopgK8AkQt6dW6Nh.jpg",
      "popularity": 0.98,
      "title": "Hatari!",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/ivm5T3xOGgG3Tvb8m4ExLBb7wsW.jpg",
      "id": 11818,
      "original_title": "Kurtlar vadisi - Irak",
      "release_date": "2006-02-03",
      "poster_path": "/o1q1Q1R2Bf21NlfzTJiP7Su127X.jpg",
      "popularity": 0.92,
      "title": "Valley of the Wolves: Iraq",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/sqIDSVlWjupKDPm37vC5mURWETw.jpg",
      "id": 13274,
      "original_title": "ラストオーダー -ファイナルファンタジーVII-",
      "release_date": "2005-09-13",
      "poster_path": "/s45WPYo7K19CdtjcMiNFORT4oRN.jpg",
      "popularity": 0.2,
      "title": "Last Order: Final Fantasy VII",
      "vote_average": 10.0,
      "vote_count": 2
    },
    {
      "adult": false,
      "backdrop_path": "/fKj7papXZq1dxnvfnxrydlsbbzt.jpg",
      "id": 13938,
      "original_title": "The Last Dragon",
      "release_date": "1985-03-22",
      "poster_path": "/RZQF0DGwlC0XTYNKjNSjpkSlQn.jpg",
      "popularity": 0.2,
      "title": "The Last Dragon",
      "vote_average": 10.0,
      "vote_count": 2
    },
    {
      "adult": false,
      "backdrop_path": "/j05QW2sgHG5y3Kru1gxSxAyHNoM.jpg",
      "id": 14597,
      "original_title": "Lassie",
      "release_date": "2005-12-16",
      "poster_path": "/zJOqLMWKKUxWVjfqNnuyO6BRu4r.jpg",
      "popularity": 1.332,
      "title": "Lassie",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": "/c0i7MxnHADv9MAiEtl7mHCqcNd4.jpg",
      "id": 15012,
      "original_title": "Linewatch",
      "release_date": "2008-01-01",
      "poster_path": "/nV99lWYgqyyGn61dIHt4LrZbXWY.jpg",
      "popularity": 0.711408006785931,
      "title": "Linewatch",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": null,
      "id": 18497,
      "original_title": "Exils",
      "release_date": "2004-05-19",
      "poster_path": "/cyBz3PzzmkUnjOq8XbIq0NxlX9i.jpg",
      "popularity": 0.2,
      "title": "Exiles",
      "vote_average": 10.0,
      "vote_count": 1
    },
    {
      "adult": false,
      "backdrop_path": null,
      "id": 23191,
      "original_title": "The 9 Ball Diaries",
      "release_date": "2008-10-07",
      "poster_path": "/wyDPW7A7l31xH7FVMNQRRFVT1aa.jpg",
      "popularity": 0.4,
      "title": "The 9 Ball Diaries",
      "vote_average": 10.0,
      "vote_count": 1
    }
  ],
  "total_pages": 204,
  "total_results": 4066
}

Search

GET

/3/search/movie

Search for movies by title.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.
include_adultToggle the inclusion of adult titles. Expected value is: true or false
yearFilter the results release dates to matches that include this value.
primary_release_yearFilter the results so that only the primary release dates have this value.
search_typeBy default, the search type is 'phrase'. This is almost guaranteed the option you will want. It's a great all purpose search type and by far the most tuned for every day querying. For those wanting more of an "autocomplete" type search, set this option to 'ngram'.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "adult": false,
            "backdrop_path": "/8uO0gUM8aNqYLs1OsTBQiXu0fEv.jpg",
            "id": 550,
            "original_title": "Fight Club",
            "release_date": "1999-10-15",
            "poster_path": "/2lECpi35Hnbpa4y46JX0aY3AWTy.jpg",
            "popularity": 61151.745000000003,
            "title": "Fight Club",
            "vote_average": 9.0999999999999996,
            "vote_count": 174
        },
        {
            "adult": false,
            "backdrop_path": "/5Z0FScA1bB6EbdGmZCUBeUk32eV.jpg",
            "id": 14476,
            "original_title": "Clubbed",
            "release_date": "2008-10-02",
            "poster_path": "/bl6PEQtmohEP1zP9srNZY6bXyHg.jpg",
            "popularity": 1.7290000000000001,
            "title": "Clubbed",
            "vote_average": 7.7999999999999998,
            "vote_count": 3
        },
        {
            "adult": false,
            "backdrop_path": "/qw2Qb42xtyE1B449JoTgb1mVCe1.jpg",
            "id": 51021,
            "original_title": "Lure: Teen Fight Club",
            "release_date": "2010-11-16",
            "poster_path": "/aRTX5Y52yGbVL6TGnyI4E8jjtz4.jpg",
            "popularity": 0.26600000000000001,
            "title": "Lure: Teen Fight Club",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "adult": false,
            "backdrop_path": "/tcoAGvTo96R7Y9ZGVCCz7BZvrvb.jpg",
            "id": 104782,
            "original_title": "Florence Fight Club",
            "release_date": "2010-01-01",
            "poster_path": "/eQqqu0srTYcclWqylvgpLyU87hV.jpg",
            "popularity": 0.085000000000000006,
            "title": "Florence Fight Club",
            "vote_average": 0.0,
            "vote_count": 0
        },
        {
            "adult": false,
            "backdrop_path": null,
            "id": 115584,
            "original_title": "Fight Club – The “I am Jack’s Laryngitis” Edit",
            "release_date": null,
            "poster_path": null,
            "popularity": 0.059999999999999998,
            "title": "Fight Club – The “I am Jack’s Laryngitis” Edit",
            "vote_average": 0.0,
            "vote_count": 0
        }
    ],
    "total_pages": 1,
    "total_results": 5
}

GET

/3/search/collection

Search for collections by name.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
pageMinimum value is 1, expected value is an integer.
languageISO 639-1 code.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "id": 86311,
            "backdrop_path": "/zuW6fOiusv4X9nnW3paHGfXcSll.jpg",
            "name": "The Avengers Collection",
            "poster_path": "/fMSxlk2zPpcXBn4R3TK3uqYjOpa.jpg"
        },
        {
            "id": 138966,
            "backdrop_path": null,
            "name": "The Toxic Avenger Series",
            "poster_path": null
        },
        {
            "id": 32135,
            "backdrop_path": null,
            "name": "The Toxic Avenger Collection",
            "poster_path": null
        },
        {
            "id": 14706,
            "backdrop_path": "/zE4wyiYkgqu7qsNXlsjckWfimYo.jpg",
            "name": "Ultimate Avengers Collection",
            "poster_path": "/s77dIqIExEslhZevh5ek3NvMg80.jpg"
        },
        {
            "id": 142748,
            "backdrop_path": null,
            "name": "The Avengers Collection: Phase 1",
            "poster_path": null
        }
    ],
    "total_pages": 1,
    "total_results": 5
}

GET

/3/search/person

Search for people by name.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
pageMinimum value is 1, expected value is an integer.
include_adultToggle the inclusion of adult titles. Expected value is: true or false
search_typeBy default, the search type is 'phrase'. This is almost guaranteed the option you will want. It's a great all purpose search type and by far the most tuned for every day querying. For those wanting more of an "autocomplete" type search, set this option to 'ngram'.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "adult": false,
            "id": 287,
            "name": "Brad Pitt",
            "profile_path": "/w8zJQuN7tzlm6FY9mfGKihxp3Cb.jpg"
        }
    ],
    "total_pages": 1,
    "total_results": 1
}

GET

/3/search/list

Search for lists by name and description.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
page
include_adultToggle the inclusion of adult lists.

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "description": "A list of the films that were nominated at the 2012 Oscars for best picture.",
            "favorite_count": 1,
            "id": "50941340760ee35da9000053",
            "item_count": 9,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "84th Academy Awards (2012) - Best Picture Nominations",
            "poster_path": "/zRqBleU93WncYnIwt8LAanQerZ7.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2011 Oscars for best picture.",
            "favorite_count": 1,
            "id": "509431ad19c2950b01000003",
            "item_count": 10,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "83rd Academy Awards (2011) - Best Picture Nominations",
            "poster_path": "/iAHDZPyLD3NW7GuNV6U1TVtb0hN.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2010 Oscars for best picture.",
            "favorite_count": 2,
            "id": "50956fd2760ee3698a001fb0",
            "item_count": 10,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "82nd Academy Awards (2010) - Best Picture Nominations",
            "poster_path": "/8iwe0iP49A6Gqcv31jBleZDZqI4.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2009 Oscars for best picture.",
            "favorite_count": 2,
            "id": "50957064760ee3698a001fc0",
            "item_count": 5,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "81st Academy Awards (2009) - Best Picture Nominations",
            "poster_path": "/gShtwIvdSHgCEQRZfymNkEUEwFm.jpg"
        },
        {
            "description": "A list of the films that were nominated at the 2008 Oscars for best picture.",
            "favorite_count": 1,
            "id": "509ec007760ee36f0c000916",
            "item_count": 5,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "80th Academy Awards (2008) - Best Picture Nominations",
            "poster_path": "/nWwFabqFaBbukXdkUCmtnrFxPNh.jpg"
        },
        {
            "description": "Here's my list of best picture winners for the Oscars. Thought it would be neat to see them all together. There's a lot of movies here I have never even heard of.",
            "favorite_count": 1,
            "id": "509ec17b19c2950a0600050d",
            "item_count": 84,
            "iso_639_1": "en",
            "list_type": "movie",
            "name": "Best Picture Winners - The Academy Awards",
            "poster_path": "/efBm2Nm2v5kQnO0w3hYcW6hVsJU.jpg"
        }
    ],
    "total_pages": 1,
    "total_results": 6
}

GET

/3/search/company

Search for companies by name.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
page

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "id": 34,
            "logo_path": "/56VlAu08MIE926dQNfBcUwTY8np.png",
            "name": "Sony Pictures"
        },
        {
            "id": 2251,
            "logo_path": null,
            "name": "Sony Pictures Animation"
        },
        {
            "id": 58,
            "logo_path": null,
            "name": "Sony Pictures Classics"
        },
        {
            "id": 5752,
            "logo_path": null,
            "name": "Sony Pictures Entertainment"
        },
        {
            "id": 7431,
            "logo_path": null,
            "name": "Sony Pictures Entertainment (SPE)"
        },
        {
            "id": 5388,
            "logo_path": null,
            "name": "Sony Pictures Home Entertainment"
        },
        {
            "id": 3045,
            "logo_path": null,
            "name": "Sony Pictures Releasing"
        },
        {
            "id": 8285,
            "logo_path": null,
            "name": "Sony Pictures Studio"
        }
    ],
    "total_pages": 1,
    "total_results": 8
}

GET

/3/search/keyword

Search for keywords by name.

Required Parameters
api_key
queryCGI escaped string
Optional Parameters
page

Response

200 (OK)
    Content-Type: application/json
    
{
    "page": 1,
    "results": [
        {
            "id": 1721,
            "name": "fight"
        },
        {
            "id": 6211,
            "name": "fighter"
        },
        {
            "id": 9878,
            "name": "fighter jet"
        },
        {
            "id": 2533,
            "name": "fighter pilot"
        },
        {
            "id": 12985,
            "name": "fighter jet the man"
        }
    ],
    "total_pages": 1,
    "total_results": 5
}

Reviews

GET

/3/review/{id}

Get the full details of a review by ID.

Required Parameters
api_key

Response

200 (OK)
    ETag: "deb66ac826fe2ad09ee8043df27ed198"
    Content-Type: application/json
    
{
  "id": "5013bc76760ee372cb00253e",
  "author": "Chris",
  "content": "I personally thought this film is on par if not better than the Dark Knight.\r\n\r\nWhilst some think the film is too long for the story I didn't find this. The length of the film is longer than some (but doesn't feel it), I liked that the film took it's time rather than shoving more elements in it - I think this contributed to the dramatic ending (much like a classical piece of music will be relaxed and calm before the final crescendo).\r\n\r\nAt the end of the day whether you like this film will boil down to if you like films Christopher Nolan has directed and/or you like the Christopher Nolan Batman series so far.\r\n\r\nStupendously good film in my opinion.",
  "iso_639_1": "en",
  "media_id": 49026,
  "media_title": "The Dark Knight Rises",
  "media_type": "Movie",
  "url": "http://j.mp/P18dg1"
}

Changes

GET

/3/movie/changes

Get a list of movie ids that have been edited. By default we show the last 24 hours and only 100 items per page. The maximum number of days that can be returned in a single request is 14. You can then use the movie changes API to get the actual data that has been changed.

Please note that the change log system to support this was changed on October 5, 2012 and will only show movies that have been edited since.

Required Parameters
api_key
Optional Parameters
page
start_dateYYYY-MM-DD
end_dateYYYY-MM-DD

Response

200 (OK)
    ETag: "0ca01e6b15143aa6fd9afa99c13d15fb"
    Content-Type: application/json
    
{
    "results": [
        {
            "id": 77946,
            "adult": false
        },
        {
            "id": 125527,
            "adult": false
        },
        {
            "id": 41023,
            "adult": false
        },
        {
            "id": 41471,
            "adult": false
        },
        {
            "id": 11058,
            "adult": false
        },
        {
            "id": 136838,
            "adult": false
        },
        {
            "id": 41024,
            "adult": false
        },
        {
            "id": 136842,
            "adult": false
        },
        {
            "id": 136844,
            "adult": false
        },
        {
            "id": 136845,
            "adult": false
        },
        {
            "id": 707,
            "adult": false
        },
        {
            "id": 13572,
            "adult": false
        },
        {
            "id": 96428,
            "adult": false
        },
        {
            "id": 13377,
            "adult": false
        },
        {
            "id": 117416,
            "adult": false
        },
        {
            "id": 12405,
            "adult": false
        },
        {
            "id": 77338,
            "adult": false
        },
        {
            "id": 4643,
            "adult": false
        },
        {
            "id": 136847,
            "adult": false
        },
        {
            "id": 10264,
            "adult": false
        },
        {
            "id": 84165,
            "adult": false
        },
        {
            "id": 136849,
            "adult": false
        },
        {
            "id": 52256,
            "adult": false
        },
        {
            "id": 77697,
            "adult": false
        },
        {
            "id": 31800,
            "adult": false
        },
        {
            "id": 24808,
            "adult": false
        },
        {
            "id": 34840,
            "adult": false
        },
        {
            "id": 87428,
            "adult": false
        },
        {
            "id": 22099,
            "adult": false
        },
        {
            "id": 119372,
            "adult": false
        },
        {
            "id": 20813,
            "adult": false
        },
        {
            "id": 94671,
            "adult": false
        },
        {
            "id": 22097,
            "adult": false
        },
        {
            "id": 136510,
            "adult": false
        },
        {
            "id": 10068,
            "adult": false
        },
        {
            "id": 136850,
            "adult": false
        },
        {
            "id": 136851,
            "adult": false
        },
        {
            "id": 136852,
            "adult": false
        },
        {
            "id": 13531,
            "adult": false
        },
        {
            "id": 17971,
            "adult": false
        },
        {
            "id": 136854,
            "adult": false
        },
        {
            "id": 136855,
            "adult": false
        },
        {
            "id": 2103,
            "adult": false
        },
        {
            "id": 72933,
            "adult": false
        },
        {
            "id": 10787,
            "adult": false
        },
        {
            "id": 128508,
            "adult": false
        },
        {
            "id": 119212,
            "adult": false
        },
        {
            "id": 46929,
            "adult": false
        },
        {
            "id": 17102,
            "adult": false
        },
        {
            "id": 136811,
            "adult": false
        },
        {
            "id": 136808,
            "adult": false
        },
        {
            "id": 62974,
            "adult": false
        },
        {
            "id": 92693,
            "adult": false
        },
        {
            "id": 136803,
            "adult": false
        },
        {
            "id": 74495,
            "adult": false
        },
        {
            "id": 136856,
            "adult": false
        },
        {
            "id": 136790,
            "adult": false
        },
        {
            "id": 136857,
            "adult": false
        },
        {
            "id": 136858,
            "adult": false
        },
        {
            "id": 136859,
            "adult": false
        },
        {
            "id": 113128,
            "adult": false
        },
        {
            "id": 114150,
            "adult": false
        },
        {
            "id": 76492,
            "adult": false
        },
        {
            "id": 136861,
            "adult": false
        },
        {
            "id": 136862,
            "adult": false
        },
        {
            "id": 136863,
            "adult": false
        },
        {
            "id": 136864,
            "adult": false
        },
        {
            "id": 9833,
            "adult": false
        },
        {
            "id": 667,
            "adult": false
        },
        {
            "id": 136867,
            "adult": false
        },
        {
            "id": 1450,
            "adult": false
        },
        {
            "id": 136732,
            "adult": false
        },
        {
            "id": 98205,
            "adult": false
        },
        {
            "id": 136735,
            "adult": false
        },
        {
            "id": 136190,
            "adult": false
        },
        {
            "id": 94720,
            "adult": false
        },
        {
            "id": 136741,
            "adult": false
        },
        {
            "id": 136742,
            "adult": false
        },
        {
            "id": 136743,
            "adult": false
        },
        {
            "id": 136751,
            "adult": false
        },
        {
            "id": 136752,
            "adult": false
        },
        {
            "id": 136753,
            "adult": false
        },
        {
            "id": 31393,
            "adult": false
        },
        {
            "id": 29262,
            "adult": false
        },
        {
            "id": 33067,
            "adult": false
        },
        {
            "id": 136868,
            "adult": false
        },
        {
            "id": 123025,
            "adult": false
        },
        {
            "id": 136870,
            "adult": false
        },
        {
            "id": 11370,
            "adult": false
        },
        {
            "id": 9267,
            "adult": false
        },
        {
            "id": 57387,
            "adult": false
        },
        {
            "id": 136876,
            "adult": false
        },
        {
            "id": 134739,
            "adult": false
        },
        {
            "id": 88534,
            "adult": false
        },
        {
            "id": 120591,
            "adult": false
        },
        {
            "id": 136877,
            "adult": false
        },
        {
            "id": 134708,
            "adult": false
        },
        {
            "id": 18426,
            "adult": false
        },
        {
            "id": 53146,
            "adult": false
        },
        {
            "id": 9587,
            "adult": false
        }
    ],
    "page": 1,
    "total_pages": 7,
    "total_results": 664
}

GET

/3/person/changes

Get a list of people ids that have been edited. By default we show the last 24 hours and only 100 items per page. The maximum number of days that can be returned in a single request is 14. You can then use the person changes API to get the actual data that has been changed.

Please note that the change log system to support this was changed on October 5, 2012 and will only show people that have been edited since.

Required Parameters
api_key
Optional Parameters
page
start_dateYYYY-MM-DD
end_dateYYYY-MM-DD

Response

200 (OK)
    ETag: "d8c9458be59f4e279c92aa1dda7c6e79"
    Content-Type: application/json
    
{
    "results": [
        {
            "id": 1106271,
            "adult": false
        },
        {
            "id": 1106272,
            "adult": false
        },
        {
            "id": 1106273,
            "adult": false
        },
        {
            "id": 1106274,
            "adult": false
        },
        {
            "id": 1106275,
            "adult": false
        },
        {
            "id": 1106276,
            "adult": false
        },
        {
            "id": 1106277,
            "adult": false
        },
        {
            "id": 1106278,
            "adult": false
        },
        {
            "id": 1106279,
            "adult": false
        },
        {
            "id": 1106280,
            "adult": false
        },
        {
            "id": 1106281,
            "adult": false
        },
        {
            "id": 236354,
            "adult": false
        },
        {
            "id": 1106282,
            "adult": false
        },
        {
            "id": 1106283,
            "adult": false
        },
        {
            "id": 1106284,
            "adult": false
        },
        {
            "id": 1106285,
            "adult": false
        },
        {
            "id": 1106286,
            "adult": false
        },
        {
            "id": 1106287,
            "adult": false
        },
        {
            "id": 1106288,
            "adult": false
        },
        {
            "id": 1106289,
            "adult": false
        },
        {
            "id": 1106290,
            "adult": false
        },
        {
            "id": 1106291,
            "adult": false
        },
        {
            "id": 1106292,
            "adult": false
        },
        {
            "id": 1106293,
            "adult": false
        },
        {
            "id": 1106294,
            "adult": false
        },
        {
            "id": 1106295,
            "adult": false
        },
        {
            "id": 1106296,
            "adult": false
        },
        {
            "id": 1106297,
            "adult": false
        },
        {
            "id": 1106298,
            "adult": false
        },
        {
            "id": 1106299,
            "adult": false
        },
        {
            "id": 1106300,
            "adult": false
        },
        {
            "id": 1106301,
            "adult": false
        },
        {
            "id": 1106302,
            "adult": false
        },
        {
            "id": 1106303,
            "adult": false
        },
        {
            "id": 1106304,
            "adult": false
        },
        {
            "id": 1106305,
            "adult": false
        },
        {
            "id": 1106306,
            "adult": false
        },
        {
            "id": 1106307,
            "adult": false
        },
        {
            "id": 1106308,
            "adult": false
        },
        {
            "id": 1106309,
            "adult": false
        },
        {
            "id": 1106310,
            "adult": false
        },
        {
            "id": 1106311,
            "adult": false
        },
        {
            "id": 1106312,
            "adult": false
        },
        {
            "id": 1106313,
            "adult": false
        },
        {
            "id": 56649,
            "adult": false
        },
        {
            "id": 1106314,
            "adult": false
        },
        {
            "id": 1106315,
            "adult": false
        },
        {
            "id": 1106316,
            "adult": false
        },
        {
            "id": 233631,
            "adult": false
        },
        {
            "id": 1106317,
            "adult": false
        },
        {
            "id": 172150,
            "adult": false
        },
        {
            "id": 184180,
            "adult": false
        },
        {
            "id": 109046,
            "adult": false
        },
        {
            "id": 1106318,
            "adult": false
        },
        {
            "id": 1106319,
            "adult": false
        },
        {
            "id": 1106320,
            "adult": false
        },
        {
            "id": 1085800,
            "adult": false
        },
        {
            "id": 1106321,
            "adult": false
        },
        {
            "id": 1106322,
            "adult": false
        },
        {
            "id": 1106323,
            "adult": false
        },
        {
            "id": 1106324,
            "adult": false
        },
        {
            "id": 1106325,
            "adult": false
        },
        {
            "id": 1106326,
            "adult": false
        },
        {
            "id": 1106327,
            "adult": false
        },
        {
            "id": 1106328,
            "adult": false
        },
        {
            "id": 1106329,
            "adult": false
        },
        {
            "id": 1106330,
            "adult": false
        },
        {
            "id": 1106331,
            "adult": false
        },
        {
            "id": 1106332,
            "adult": false
        },
        {
            "id": 1106333,
            "adult": false
        },
        {
            "id": 1106334,
            "adult": false
        },
        {
            "id": 1106335,
            "adult": false
        },
        {
            "id": 1106336,
            "adult": false
        },
        {
            "id": 1106352,
            "adult": false
        },
        {
            "id": 1106355,
            "adult": false
        },
        {
            "id": 1106356,
            "adult": false
        },
        {
            "id": 1106358,
            "adult": false
        },
        {
            "id": 1106367,
            "adult": false
        },
        {
            "id": 1106397,
            "adult": false
        },
        {
            "id": 1106399,
            "adult": false
        },
        {
            "id": 1106408,
            "adult": false
        },
        {
            "id": 1106411,
            "adult": false
        },
        {
            "id": 1106413,
            "adult": false
        },
        {
            "id": 1106414,
            "adult": false
        },
        {
            "id": 1106432,
            "adult": false
        },
        {
            "id": 1106511,
            "adult": false
        },
        {
            "id": 1106512,
            "adult": false
        },
        {
            "id": 1106513,
            "adult": false
        },
        {
            "id": 1106514,
            "adult": false
        },
        {
            "id": 1106515,
            "adult": false
        },
        {
            "id": 1106516,
            "adult": false
        },
        {
            "id": 1106517,
            "adult": false
        },
        {
            "id": 1106518,
            "adult": false
        },
        {
            "id": 1106519,
            "adult": false
        },
        {
            "id": 1106520,
            "adult": false
        },
        {
            "id": 1106521,
            "adult": false
        },
        {
            "id": 1106522,
            "adult": false
        },
        {
            "id": 1106523,
            "adult": false
        },
        {
            "id": 1106524,
            "adult": false
        },
        {
            "id": 1106525,
            "adult": false
        }
    ],
    "page": 1,
    "total_pages": 2,
    "total_results": 164
}

Jobs

GET

/3/job/list

Get a list of valid jobs.

Required Parameters
api_key

Response

200 (OK)
    ETag: "ccbdd8ac09c878d3c2ccc9590810d28a"
    Content-Type: application/json
    
{
  "jobs": [
    {
      "department": "Writing",
      "job_list": [
        "Screenplay",
        "Author",
        "Novel",
        "Characters",
        "Theatre Play",
        "Adaptation",
        "Dialogue",
        "Writer",
        "Other",
        "Storyboard",
        "Original Story",
        "Scenario Writer",
        "Screenstory",
        "Musical",
        "Idea",
        "Story",
        "Creative Producer",
        "Teleplay",
        "Texte",
        "Opera",
        "Co-Writer"
      ]
    },
    {
      "department": "Directing",
      "job_list": [
        "Director",
        "Script Supervisor",
        "Other",
        "Layout",
        "Script Coordinator",
        "Special Guest Director"
      ]
    },
    {
      "department": "Actors",
      "job_list": [
        "Actor",
        "Stunt Double",
        "Voice",
        "Cameo",
        "Special Guest"
      ]
    },
    {
      "department": "Camera",
      "job_list": [
        "Director of Photography",
        "Underwater Camera",
        "Camera Operator",
        "Still Photographer",
        "Camera Department Manager",
        "Camera Supervisor",
        "Camera Technician",
        "Other",
        "Grip",
        "Steadicam Operator",
        "Additional Camera",
        "Camera Intern",
        "Additional Photography",
        "Helicopter Camera"
      ]
    },
    {
      "department": "Editing",
      "job_list": [
        "Editor",
        "Supervising Film Editor",
        "Additional Editing",
        "Editorial Manager",
        "First Assistant Editor",
        "Additional Editorial Assistant",
        "Editorial Coordinator",
        "Editorial Production Assistant",
        "Editorial Services",
        "Dialogue Editor",
        "Archival Footage Coordinator",
        "Archival Footage Research",
        "Color Timer",
        "Digital Intermediate",
        "Other"
      ]
    },
    {
      "department": "Art",
      "job_list": [
        "Production Design",
        "Art Direction",
        "Set Decoration",
        "Set Designer",
        "Conceptual Design",
        "Interior Designer",
        "Settings",
        "Assistant Art Director",
        "Art Department Coordinator",
        "Other",
        "Art Department Manager",
        "Sculptor",
        "Art Department Assistant",
        "Background Designer",
        "Co-Art Director",
        "Set Decoration Buyer",
        "Production Illustrator",
        "Standby Painter",
        "Location Scout",
        "Leadman",
        "Greensman",
        "Gun Wrangler",
        "Construction Coordinator",
        "Construction Foreman",
        "Lead Painter",
        "Sign Painter"
      ]
    },
    {
      "department": "Costume & Make-Up",
      "job_list": [
        "Costume Design",
        "Makeup Artist",
        "Hairstylist",
        "Set Dressing Artist",
        "Set Dressing Supervisor",
        "Set Dressing Manager",
        "Set Dressing Production Assistant",
        "Facial Setup Artist",
        "Hair Setup",
        "Costume Supervisor",
        "Set Costumer",
        "Makeup Department Head",
        "Wigmaker",
        "Maske",
        "Shoe Design",
        "Other",
        "Co-Costume Designer"
      ]
    },
    {
      "department": "Production",
      "job_list": [
        "Producer",
        "Executive Producer",
        "Casting",
        "Production Manager",
        "Unit Production Manager",
        "Line Producer",
        "Location Manager",
        "Other",
        "Production Supervisor",
        "Production Accountant",
        "Production Office Coordinator",
        "Finance",
        "Executive Consultant",
        "Character Technical Supervisor",
        "Development Manager",
        "Administration",
        "Executive In Charge Of Post Production",
        "Herstellungsleitung",
        "Produzent",
        "Production Director",
        "Executive In Charge Of Production",
        "Publicist"
      ]
    },
    {
      "department": "Sound",
      "job_list": [
        "Original Music Composer",
        "Sound Designer",
        "Sound Editor",
        "Sound Director",
        "Sound mixer",
        "Music Editor",
        "Sound Effects Editor",
        "Production Sound Mixer",
        "Additional Soundtrack",
        "Supervising Sound Editor",
        "Supervising Sound Effects Editor",
        "Sound Re-Recording Mixer",
        "Recording Supervision",
        "Boom Operator",
        "Sound Montage Associate",
        "Songs",
        "Music",
        "ADR & Dubbing",
        "Sound Engineer",
        "Foley",
        "Additional Music Supervisor",
        "First Assistant Sound Editor",
        "Scoring Mixer",
        "Dolby Consultant",
        "Tonbearbeitung",
        "Other"
      ]
    },
    {
      "department": "Visual Effects",
      "job_list": [
        "Animation",
        "Visual Effects",
        "Chief Technician / Stop-Motion Expert",
        "Creature Design",
        "Shading",
        "Modeling",
        "CG Painter",
        "Visual Development",
        "Animation Manager",
        "Animation Director",
        "Fix Animator",
        "Animation Department Coordinator",
        "Animation Fix Coordinator",
        "Animation Production Assistant",
        "Visual Effects Supervisor",
        "Mechanical & Creature Designer",
        "Battle Motion Coordinator",
        "Animation Supervisor",
        "VFX Supervisor",
        "Cloth Setup",
        "VFX Artist",
        "CG Engineer",
        "24 Frame Playback",
        "Imaging Science",
        "I/O Supervisor",
        "Visual Effects Producer",
        "VFX Production Coordinator",
        "I/O Manager",
        "Additional Effects Development",
        "Color Designer",
        "Simulation & Effects Production Assistant",
        "Simulation & Effects Artist"
      ]
    },
    {
      "department": "Crew",
      "job_list": [
        "Special Effects",
        "Post Production Supervisor",
        "Second Unit",
        "Choreographer",
        "Stunts",
        "Sound Recordist",
        "Stunt Coordinator",
        "Special Effects Coordinator",
        "Supervising Technical Director",
        "Supervising Animator",
        "Production Artist",
        "Sequence Leads",
        "Second Film Editor",
        "Temp Music Editor",
        "Temp Sound Editor",
        "Sequence Supervisor",
        "Software Team Lead",
        "Software Engineer",
        "Documentation & Support",
        "Machinist",
        "Photoscience Manager",
        "Department Administrator",
        "Schedule Coordinator",
        "Supervisor of Production Resources",
        "Production Office Assistant",
        "Information Systems Manager",
        "Systems Administrators & Support",
        "Projection",
        "Post Production Assistant",
        "Sound Design Assistant",
        "Mix Technician",
        "Motion Actor",
        "Sets & Props Supervisor",
        "Compositors",
        "Tattooist",
        "Sets & Props Artist",
        "Motion Capture Artist",
        "Sequence Artist",
        "Mixing Engineer",
        "Special Sound Effects",
        "Post-Production Manager",
        "Dialect Coach",
        "Picture Car Coordinator",
        "Property Master",
        "Cableman",
        "Set Production Assistant",
        "Video Assist Operator",
        "Unit Publicist",
        "Set Medic",
        "Stand In",
        "Transportation Coordinator",
        "Transportation Captain",
        "Supervising Art Director",
        "Art Direction",
        "Stunts Coordinator",
        "Post Production Consulting",
        "Production Intern",
        "Utility Stunts",
        "Actor's Assistant",
        "Set Production Intern",
        "Production Controller",
        "Studio Teachers",
        "Chef",
        "Craft Service",
        "Scenic Artist",
        "Propmaker",
        "Prop Maker",
        "Transportation Co-Captain",
        "Driver",
        "Security",
        "Second Unit Cinematographer",
        "Loader",
        "Manager of Operations",
        "Quality Control Supervisor",
        "Legal Services",
        "Public Relations",
        "Score Engineer",
        "Translator",
        "Title Graphics",
        "Telecine Colorist",
        "Comic-Zeichner",
        "Unit Production Manager",
        "Unit Production Manager",
        "Animatronic and Prosthetic Effects",
        "Martial Arts Choreographer",
        "Cinematography",
        "Steadycam",
        "Regieassistenz",
        "Executive Visual Effects Producer",
        "Visual Effects Design Consultant",
        "Digital Effects Supervisor",
        "Digital Producer",
        "CG Supervisor",
        "Visual Effects Art Director",
        "Visual Effects Editor",
        "executive in charge of Finance",
        "Associate Choreographer",
        "Makeup Effects",
        "Maskenbildner",
        "Redaktion",
        "treatment",
        "Dramaturgie",
        "Lighting Camera",
        "Technical Supervisor",
        "CGI Supervisor",
        "Creative Consultant",
        "Script",
        "Executive Music Producer",
        "Tongestaltung",
        "Commissioning Editor",
        "Klimatechnik",
        "Tiertrainer",
        "Additional Writing",
        "Additional Music",
        "Poem",
        "Thanks",
        "Szenografie",
        "Mischung",
        "Titelgestaltung",
        "Musikmischung",
        "Comic-Zeichner",
        "Creator",
        "Additional Dialogue",
        "Video Game",
        "Graphic Novel Illustrator",
        "Other",
        "Series Writer",
        "Radio Play"
      ]
    },
    {
      "department": "Lighting",
      "job_list": [
        "Lighting Technician",
        "Best Boy Electric",
        "Gaffer",
        "Lighting Technician",
        "Rigging Gaffer",
        "Lighting Supervisor",
        "Lighting Manager",
        "Directing Lighting Artist",
        "Master Lighting Artist",
        "Lighting Artist",
        "Lighting Coordinator",
        "Lighting Production Assistant",
        "Best Boy Electrician",
        "Electrician",
        "Rigging Grip",
        "Other"
      ]
    }
  ]
}