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": "my_password",
  "request_token": "825b0375e94da6c9f829465e170ed3448a3ee4d9",
  "username": "my_username"
}'
{
  "expires_at": "2024-12-29 14:13:38 UTC",
  "request_token": "825b0375e94da6c9f829465e170ed3448a3ee4d9",
  "success": true
}

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

Request successful

The response is of type object.