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-07 12:34:51 UTC",
  "request_token": "02a0e6d34dbd8325254e83c78918599076a62b0e",
  "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

Request successful

The response is of type object.