The Movie Database · JSON Structure

Tmdb Api Authentication Validate Key Response Structure

TMDB Authentication — Validate Key (200 payload).

Type: object Properties: 3
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

success status_code status_message

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-authentication-validate-key-response-structure.json",
  "name": "AuthenticationValidateKeyResponse",
  "description": "TMDB Authentication \u2014 Validate Key (200 payload).",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "examples": [
        true
      ],
      "default": true
    },
    "status_code": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "status_message": {
      "type": "string",
      "examples": [
        "Success."
      ]
    }
  }
}