The Movie Database · JSON Structure

Tmdb Api Account Details Response Structure

TMDB Account — Details (200 payload).

Type: object Properties: 7
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

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

Properties

avatar id iso_639_1 iso_3166_1 name include_adult username

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-account-details-response-structure.json",
  "name": "AccountDetailsResponse",
  "description": "TMDB Account \u2014 Details (200 payload).",
  "type": "object",
  "properties": {
    "avatar": {
      "type": "object",
      "properties": {
        "gravatar": {
          "type": "object",
          "properties": {
            "hash": {
              "type": "string",
              "examples": [
                "c9e9fc152ee756a900db85757c29815d"
              ]
            }
          }
        },
        "tmdb": {
          "type": "object",
          "properties": {
            "avatar_path": {
              "type": "string",
              "examples": [
                "/xy44UvpbTgzs9kWmp4C3fEaCl5h.png"
              ]
            }
          }
        }
      }
    },
    "id": {
      "type": "int32",
      "examples": [
        548
      ],
      "default": 0
    },
    "iso_639_1": {
      "type": "string",
      "examples": [
        "en"
      ]
    },
    "iso_3166_1": {
      "type": "string",
      "examples": [
        "CA"
      ]
    },
    "name": {
      "type": "string",
      "examples": [
        "Travis Bell"
      ]
    },
    "include_adult": {
      "type": "boolean",
      "examples": [
        false
      ],
      "default": true
    },
    "username": {
      "type": "string",
      "examples": [
        "travisbell"
      ]
    }
  }
}