curl --request GET \
--url https://api.themoviedb.org/3/authentication/token/new \
--header 'Authorization: Bearer <token>'
{
"expires_at": "2024-12-17 14:52:17 UTC",
"request_token": "2f468b6d15c7b7670c2a83c53bf6b9cbf6d41e5c",
"success": true
}
This endpoint allows you to create a request token.
curl --request GET \
--url https://api.themoviedb.org/3/authentication/token/new \
--header 'Authorization: Bearer <token>'
{
"expires_at": "2024-12-17 14:52:17 UTC",
"request_token": "2f468b6d15c7b7670c2a83c53bf6b9cbf6d41e5c",
"success": true
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Create Request Token
The response is of type object
.