ACCOUNT
- Endpoints
AUTHENTICATION
CERTIFICATIONS
- Endpoints
CHANGES
- Endpoints
COLLECTIONS
- Endpoints
COMPANIES
- Endpoints
CONFIGURATION
- Endpoints
CREDITS
FIND
GENRES
GUEST-SESSIONS
KEYWORDS
MOVIES
PEOPLE
PEOPLE-LISTS
REVIEWS
TV-EPISODE-GROUPS
TV-EPISODES
TV-SEASONS
TV-SERIES
TV-SERIES-LISTS
WATCH-PROVIDERS
Endpoints
Request Token with Login
This endpoint validates the request token with the user’s credentials such as Username, Password and Request Token.
POST
/
authentication
/
token
/
validate_with_login
Copy
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"
}'
Copy
{
"expires_at": "2025-01-07 15:55:15 UTC",
"request_token": "59fc52561782a55fcfbc4e0085bf6b99eb985291",
"success": true
}
Query Parameters
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
.
Copy
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"
}'
Copy
{
"expires_at": "2025-01-07 15:55:15 UTC",
"request_token": "59fc52561782a55fcfbc4e0085bf6b99eb985291",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.