The Movie Database · JSON Structure

Tmdb Api Authentication Create Request Token Response Structure

TMDB Authentication — Create Request Token (200 payload).

Type: object Properties: 3
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

AuthenticationCreateRequestTokenResponse 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 expires_at request_token

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-create-request-token-response-structure.json",
  "name": "AuthenticationCreateRequestTokenResponse",
  "description": "TMDB Authentication \u2014 Create Request Token (200 payload).",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "examples": [
        true
      ],
      "default": true
    },
    "expires_at": {
      "type": "string",
      "examples": [
        "2016-08-26 17:04:39 UTC"
      ]
    },
    "request_token": {
      "type": "string",
      "examples": [
        "ff5c7eeb5a8870efe3cd7fc5c282cffd26800ecd"
      ]
    }
  }
}