The Movie Database · JSON Structure

Tmdb Api Search Movie Response Structure

TMDB Search — Movie (200 payload).

Type: object Properties: 4
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

SearchMovieResponse is a JSON Structure definition published by The Movie Database, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

page results total_pages total_results

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-structure/tmdb-api-search-movie-response-structure.json",
  "name": "SearchMovieResponse",
  "description": "TMDB Search \u2014 Movie (200 payload).",
  "type": "object",
  "properties": {
    "page": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "adult": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "backdrop_path": {
            "type": "string",
            "examples": [
              "/hZkgoQYus5vegHoetLkCJzb17zJ.jpg"
            ]
          },
          "genre_ids": {
            "type": "array",
            "items": {
              "type": "int32",
              "examples": [
                18
              ],
              "default": 0
            }
          },
          "id": {
            "type": "int32",
            "examples": [
              550
            ],
            "default": 0
          },
          "original_language": {
            "type": "string",
            "examples": [
              "en"
            ]
          },
          "original_title": {
            "type": "string",
            "examples": [
              "Fight Club"
            ]
          },
          "overview": {
            "type": "string",
            "examples": [
              "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": {
            "type": "double",
            "examples": [
              73.433
            ],
            "default": 0
          },
          "poster_path": {
            "type": "string",
            "examples": [
              "/pB8BM7pdSp6B6Ih7QZ4DrQ3PmJK.jpg"
            ]
          },
          "release_date": {
            "type": "string",
            "examples": [
              "1999-10-15"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "Fight Club"
            ]
          },
          "video": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "vote_average": {
            "type": "double",
            "examples": [
              8.433
            ],
            "default": 0
          },
          "vote_count": {
            "type": "int32",
            "examples": [
              26279
            ],
            "default": 0
          }
        }
      }
    },
    "total_pages": {
      "type": "int32",
      "examples": [
        2
      ],
      "default": 0
    },
    "total_results": {
      "type": "int32",
      "examples": [
        39
      ],
      "default": 0
    }
  }
}