GET
/
3
/
authentication
/
token
/
new
curl --request GET \
  --url https://api.themoviedb.org/3/authentication/token/new \
  --header 'Authorization: Bearer <token>'
{
  "expires_at": "2024-12-14 17:16:25 UTC",
  "request_token": "07a398bfc1da42869f38e52a7eee32ddbf1e3064",
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json
Create request token
expires_at
string

This is the time when the request token will expire.

Example:

"2024-12-14 17:16:25 UTC"

request_token
string

This is the request token.

Example:

"07a398bfc1da42869f38e52a7eee32ddbf1e3064"

success
boolean

This shows whether the output was a success or failure.

Example:

true