The Movie Database · Schema

GuestSessionRatedMoviesResponse

TMDB Guest Sessions — Rated Movies (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
page integer
results array
total_pages integer
total_results integer
View JSON Schema on GitHub

JSON Schema

tmdb-api-guest-session-rated-movies-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-guest-session-rated-movies-response-schema.json",
  "title": "GuestSessionRatedMoviesResponse",
  "description": "TMDB Guest Sessions \u2014 Rated Movies (200 payload).",
  "type": "object",
  "properties": {
    "page": {
      "type": "integer",
      "examples": [
        1
      ],
      "default": 0
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "adult": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "backdrop_path": {
            "type": "string",
            "examples": [
              "/ikR2qy9xJCHX7M8i5rcvuNfdYXs.jpg"
            ]
          },
          "genre_ids": {
            "type": "array",
            "items": {
              "type": "integer",
              "examples": [
                18
              ],
              "default": 0
            }
          },
          "id": {
            "type": "integer",
            "examples": [
              16
            ],
            "default": 0
          },
          "original_language": {
            "type": "string",
            "examples": [
              "en"
            ]
          },
          "original_title": {
            "type": "string",
            "examples": [
              "Dancer in the Dark"
            ]
          },
          "overview": {
            "type": "string",
            "examples": [
              "Selma, a Czech immigrant on the verge of blindness, struggles to make ends meet for herself and her son, who has inherited the same genetic disorder and will suffer the same fate without an expensive operation. When life gets too difficult, Selma learns to cope through her love of musicals, escaping life's troubles - even if just for a moment - by dreaming up little numbers to the rhythmic beats of her surroundings."
            ]
          },
          "popularity": {
            "type": "number",
            "examples": [
              14.684
            ],
            "default": 0
          },
          "poster_path": {
            "type": "string",
            "examples": [
              "/8Wdd3fQfbbQeoSfWpHrDfaFNhBU.jpg"
            ]
          },
          "release_date": {
            "type": "string",
            "examples": [
              "2000-06-30"
            ]
          },
          "title": {
            "type": "string",
            "examples": [
              "Dancer in the Dark"
            ]
          },
          "video": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          },
          "vote_average": {
            "type": "number",
            "examples": [
              7.885
            ],
            "default": 0
          },
          "vote_count": {
            "type": "integer",
            "examples": [
              1549
            ],
            "default": 0
          },
          "rating": {
            "type": "number",
            "examples": [
              8.5
            ],
            "default": 0
          }
        }
      }
    },
    "total_pages": {
      "type": "integer",
      "examples": [
        1
      ],
      "default": 0
    },
    "total_results": {
      "type": "integer",
      "examples": [
        1
      ],
      "default": 0
    }
  }
}