POST
/
authentication
/
token
/
validate_with_login
curl --request POST \
  --url https://api.themoviedb.org/authentication/token/validate_with_login \
  --header 'Content-Type: application/json' \
  --data '{
  "password": "{{password}}",
  "request_token": "{{request_token}}",
  "username": "samyben"
}'
{
  "expires_at": "2025-01-07 15:55:15 UTC",
  "request_token": "59fc52561782a55fcfbc4e0085bf6b99eb985291",
  "success": true
}

Query Parameters

api_key
string

This is the Key you were given when you signed up TMDb account

Example:

"63365ecd10409ee95d673fd7f8c095e3"

Body

application/json

Response

200 - application/json

Validate Request Token with Login

The response is of type object.