POST
/
3
/
authentication
/
token
/
validate_with_login
curl --request POST \
  --url https://api.themoviedb.org/3/authentication/token/validate_with_login \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "33u4ut78",
  "request_token": "494a2598df9b563a3a54a2bbcde2a738654a5c49",
  "username": "John Doe"
}'
{
  "expires_at": "2024-12-26 16:17:26 UTC",
  "request_token": "494a2598df9b563a3a54a2bbcde2a738654a5c49",
  "success": true
}

You will be using your TMDB login details(username & password) here to validate request token

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

Validate Request Token with login

The response is of type object.