The Movie Database · Schema

ListDetailsResponse

TMDB Lists — Details (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
created_by string
description string
favorite_count integer
id string
items array
item_count integer
iso_639_1 string
name string
poster_path string
View JSON Schema on GitHub

JSON Schema

tmdb-api-list-details-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-list-details-response-schema.json",
  "title": "ListDetailsResponse",
  "description": "TMDB Lists \u2014 Details (200 payload).",
  "type": "object",
  "properties": {
    "created_by": {
      "type": "string",
      "examples": [
        "travisbell"
      ]
    },
    "description": {
      "type": "string",
      "examples": [
        "The idea behind this list is to collect the live action comic book movies from within the Marvel franchise."
      ]
    },
    "favorite_count": {
      "type": "integer",
      "examples": [
        0
      ],
      "default": 0
    },
    "id": {
      "type": "string",
      "examples": [
        "1"
      ]
    },
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "adult": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "backdrop_path": {
            "type": "string",
            "examples": [
              "/14QbnygCuTO0vl7CAFmPf1fgZfV.jpg"
            ]
          },
          "genre_ids": {
            "type": "array",
            "items": {
              "type": "integer",
              "examples": [
                28
              ],
              "default": 0
            }
          },
          "id": {
            "type": "integer",
            "examples": [
              634649
            ],
            "default": 0
          },
          "media_type": {
            "type": "string",
            "examples": [
              "movie"
            ]
          },
          "original_language": {
            "type": "string",
            "examples": [
              "en"
            ]
          },
          "original_title": {
            "type": "string",
            "examples": [
              "Spider-Man: No Way Home"
            ]
          },
          "overview": {
            "type": "string",
            "examples": [
              "Peter Parker ist demaskiert und kann sein normales Leben nicht mehr von den hohen Eins\u00e4tzen als Superheld trennen. Als er Doctor Strange um Hilfe bittet, wird die Lage noch gef\u00e4hrlicher und er muss entdecken, was es wirklich bedeutet, Spider-Man zu sein."
            ]
          },
          "popularity": {
            "type": "number",
            "examples": [
              398.217
            ],
            "default": 0
          },
          "poster_path": {
            "type": "string",
            "examples": [
              "/iNKf4D0AzOj9GLq8ZyG3WZaqibL.jpg"
            ]
          },
          "release_date": {
            "type": "string",
            "examples": [
              "2021-12-15"
            ]
          },
          "title": {
            "type": "string",
            "examples": [
              "Spider-Man: No Way Home"
            ]
          },
          "video": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "vote_average": {
            "type": "integer",
            "examples": [
              8
            ],
            "default": 0
          },
          "vote_count": {
            "type": "integer",
            "examples": [
              17267
            ],
            "default": 0
          }
        }
      }
    },
    "item_count": {
      "type": "integer",
      "examples": [
        59
      ],
      "default": 0
    },
    "iso_639_1": {
      "type": "string",
      "examples": [
        "en"
      ]
    },
    "name": {
      "type": "string",
      "examples": [
        "The Marvel Universe"
      ]
    },
    "poster_path": {
      "type": "string",
      "examples": [
        "/coJVIUEOToAEGViuhclM7pXC75R.jpg"
      ]
    }
  }
}