The Movie Database · JSON Structure

Tmdb Api Movie Lists Response Structure

TMDB Movies — Lists (200 payload).

Type: object Properties: 5
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

id 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-movie-lists-response-structure.json",
  "name": "MovieListsResponse",
  "description": "TMDB Movies \u2014 Lists (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "examples": [
        550
      ],
      "default": 0
    },
    "page": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "description": {
            "type": "string",
            "examples": [
              "Movies I own"
            ]
          },
          "favorite_count": {
            "type": "int32",
            "examples": [
              0
            ],
            "default": 0
          },
          "id": {
            "type": "int32",
            "examples": [
              8248696
            ],
            "default": 0
          },
          "item_count": {
            "type": "int32",
            "examples": [
              409
            ],
            "default": 0
          },
          "iso_639_1": {
            "type": "string",
            "examples": [
              "en"
            ]
          },
          "list_type": {
            "type": "string",
            "examples": [
              "movie"
            ]
          },
          "name": {
            "type": "string",
            "examples": [
              "My Movies"
            ]
          },
          "poster_path": {}
        }
      }
    },
    "total_pages": {
      "type": "int32",
      "examples": [
        122
      ],
      "default": 0
    },
    "total_results": {
      "type": "int32",
      "examples": [
        2422
      ],
      "default": 0
    }
  }
}