> ## Documentation Index
> Fetch the complete documentation index at: https://ileolami.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Request Token

> This endpoint obtain a new token from the authentication server.



## OpenAPI

````yaml get /3/authentication/token/new
openapi: 3.0.3
info:
  title: The Movie Database
  description: Reference
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.themoviedb.org
security:
  - bearerAuth: []
tags:
  - name: ACCOUNT
  - name: AUTHENTICATION
  - name: CERTIFICATION
  - name: CHANGES
  - name: COLLECTION
  - name: COMPANIES
  - name: CONFIGURATION
  - name: CREDITS
  - name: DISCOVER
  - name: FIND
  - name: GENRES
  - name: GUEST SESSION
  - name: KEYWORDS
  - name: LISTS
  - name: MOVIE LISTS
  - name: MOVIES
  - name: NETWORK
  - name: PEOPLE
  - name: PEOPLE LISTS
  - name: REVIEWS
  - name: SEARCH
  - name: TRENDING
  - name: TV SERIES LIST
  - name: TV SERIES
  - name: TV SEASONS
  - name: TV EPISODES
  - name: TV EPISODES GROUPS
  - name: WATCH PROVIDERS
paths:
  /3/authentication/token/new:
    get:
      tags:
        - AUTHENTICATION
      summary: Create Request Token
      description: This endpoint obtain a new token from the authentication server.
      operationId: createRequestToken
      responses:
        '200':
          description: Create Request Token
          headers:
            Alt-Svc:
              schema:
                type: string
                example: h3=":443"; ma=86400
            Cache-Control:
              schema:
                type: string
                example: public, max-age=0
            Connection:
              schema:
                type: string
                example: keep-alive
            Content-Encoding:
              schema:
                type: string
                example: gzip
            Date:
              schema:
                type: string
                example: Thu, 26 Dec 2024 13:43:54 GMT
            ETag:
              schema:
                type: string
                example: W/"9cb44701d2b6d3b6d3c2f66b6d3b1cc7"
            Server:
              schema:
                type: string
                example: openresty
            Transfer-Encoding:
              schema:
                type: string
                example: chunked
            Vary:
              schema:
                type: string
                example: Origin
            Via:
              schema:
                type: string
                example: >-
                  1.1 217b83eccc1d56126f95c3f716950650.cloudfront.net
                  (CloudFront)
            X-Amz-Cf-Id:
              schema:
                type: string
                example: t4JsI34S68grviHPgBl53cVbrc4MCN_AfsvVUiRx2PMx5oZIi3a9sQ==
            X-Amz-Cf-Pop:
              schema:
                type: string
                example: DFW57-P2
            X-Cache:
              schema:
                type: string
                example: Miss from cloudfront
            authentication-callback:
              schema:
                type: string
                example: >-
                  https://www.themoviedb.org/authenticate/4f7c18709930e20d192979ef7fd499bd882380a6
          content:
            application/json:
              schema:
                type: object
                properties:
                  expires_at:
                    type: string
                    example: 2024-12-26 14:43:54 UTC
                  request_token:
                    type: string
                    example: 4f7c18709930e20d192979ef7fd499bd882380a6
                  success:
                    type: boolean
                    example: true
              examples:
                Create Request Token:
                  value:
                    expires_at: 2024-12-26 14:43:54 UTC
                    request_token: 4f7c18709930e20d192979ef7fd499bd882380a6
                    success: true
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````