The Movie Database · JSON Structure

Tmdb Api Movie Details Response Structure

TMDB Movies — Details (200 payload).

Type: object Properties: 26
CatalogDiscoveryEntertainmentImageMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

adult backdrop_path belongs_to_collection budget genres homepage id imdb_id origin_country original_language original_title overview popularity poster_path production_companies production_countries release_date revenue runtime spoken_languages status tagline name video vote_average vote_count

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-movie-details-response-structure.json",
  "name": "MovieDetailsResponse",
  "description": "TMDB Movies \u2014 Details (200 payload).",
  "type": "object",
  "properties": {
    "adult": {
      "type": "boolean",
      "examples": [
        false
      ],
      "default": "false"
    },
    "backdrop_path": {
      "type": "string",
      "examples": [
        "/2w4xG178RpB4MDAIfTkqAuSJzec.jpg"
      ]
    },
    "belongs_to_collection": {
      "type": "object",
      "properties": {
        "id": {
          "type": "int32",
          "examples": [
            10
          ],
          "default": 0
        },
        "name": {
          "type": "string",
          "examples": [
            "Star Wars Collection"
          ]
        },
        "poster_path": {
          "type": "string",
          "examples": [
            "/pWVLFh4OuejTpUaDQbB1C4zoS2p.jpg"
          ]
        },
        "backdrop_path": {
          "type": "string",
          "examples": [
            "/iY2ujEY2m68OTTlPFTiHub9joHS.jpg"
          ]
        }
      }
    },
    "budget": {
      "type": "int32",
      "examples": [
        11000000
      ],
      "default": 0
    },
    "genres": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              12
            ],
            "default": 0
          },
          "name": {
            "type": "string",
            "examples": [
              "Adventure"
            ]
          }
        }
      }
    },
    "homepage": {
      "type": "string",
      "examples": [
        "http://www.starwars.com/films/star-wars-episode-iv-a-new-hope"
      ]
    },
    "id": {
      "type": "int32",
      "examples": [
        11
      ],
      "default": 0
    },
    "imdb_id": {
      "type": "string",
      "examples": [
        "tt0076759"
      ]
    },
    "origin_country": {
      "type": "array",
      "items": {
        "type": "string",
        "examples": [
          "US"
        ]
      }
    },
    "original_language": {
      "type": "string",
      "examples": [
        "en"
      ]
    },
    "original_title": {
      "type": "string",
      "examples": [
        "Star Wars"
      ]
    },
    "overview": {
      "type": "string",
      "examples": [
        "Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire."
      ]
    },
    "popularity": {
      "type": "double",
      "examples": [
        20.6912
      ],
      "default": 0
    },
    "poster_path": {
      "type": "string",
      "examples": [
        "/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg"
      ]
    },
    "production_companies": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              1
            ],
            "default": 0
          },
          "logo_path": {
            "type": "string",
            "examples": [
              "/tlVSws0RvvtPBwViUyOFAO0vcQS.png"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "Lucasfilm Ltd."
            ]
          },
          "origin_country": {
            "type": "string",
            "examples": [
              "US"
            ]
          }
        }
      }
    },
    "production_countries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "iso_3166_1": {
            "type": "string",
            "examples": [
              "US"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "United States of America"
            ]
          }
        }
      }
    },
    "release_date": {
      "type": "string",
      "examples": [
        "1977-05-25"
      ]
    },
    "revenue": {
      "type": "int32",
      "examples": [
        775398007
      ],
      "default": 0
    },
    "runtime": {
      "type": "int32",
      "examples": [
        121
      ],
      "default": 0
    },
    "spoken_languages": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "english_name": {
            "type": "string",
            "examples": [
              "English"
            ]
          },
          "iso_639_1": {
            "type": "string",
            "examples": [
              "en"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "English"
            ]
          }
        }
      }
    },
    "status": {
      "type": "string",
      "examples": [
        "Released"
      ]
    },
    "tagline": {
      "type": "string",
      "examples": [
        "A long time ago in a galaxy far, far away..."
      ]
    },
    "name": {
      "type": "string",
      "examples": [
        "Star Wars"
      ]
    },
    "video": {
      "type": "boolean",
      "examples": [
        false
      ],
      "default": "false"
    },
    "vote_average": {
      "type": "double",
      "examples": [
        8.2
      ],
      "default": 0
    },
    "vote_count": {
      "type": "int32",
      "examples": [
        22061
      ],
      "default": 0
    }
  }
}

Work with this as data

Every JSON Structure here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for json structure

4 MCP tools reach this
  • find_json_structuresBrowse and filter every JSON Structure in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Structure
curl "https://apis.io/api/v1/json-structures/tmdb-api-movie-details-response-structure"
All json structure
curl "https://apis.io/api/v1/json-structures?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.