cURL
curl --request POST \ --url https://api.themoviedb.org/4/auth/request_token \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "redirect_to": "https://www.themoviedb.org/" } '
{ "success": true, "status_code": 1, "status_message": "Success", "request_token": "1e2345678" }
This endpoint is used to create a request token.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Redirect URL or callback.
Successful response
Indicates success
A numeric code indicating the result of the request.
A message providing additional details about the response status.
Token for request