The Movie Database · Example Payload

The Movie Database Searchmovie Example

EntertainmentMoviesTelevision

The Movie Database Searchmovie Example is an example object payload from The Movie Database, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.themoviedb.org/3/search/movie?query=Inception&language=en-US&page=1",
    "headers": {
      "Authorization": "Bearer YOUR_ACCESS_TOKEN",
      "accept": "application/json"
    },
    "parameters": {
      "query": "Inception",
      "language": "en-US",
      "page": 1
    }
  },
  "response": {
    "page": 1,
    "results": [
      {
        "id": 27205,
        "title": "Inception",
        "original_title": "Inception",
        "original_language": "en",
        "overview": "Cobb, a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: inception.",
        "release_date": "2010-07-15",
        "adult": false,
        "popularity": 84.256,
        "vote_average": 8.369,
        "vote_count": 36198,
        "poster_path": "/ljsZTbVsrQSqZgWeep2B1QiDKuh.jpg",
        "backdrop_path": "/s3TBrRGB1iav7gFOCNx3H31MoES.jpg",
        "genre_ids": [28, 878, 12]
      }
    ],
    "total_pages": 1,
    "total_results": 1
  }
}