Introduction
Authentication
Guest Sessions
Account
Keyword
Collections
Movies
TV Series
- GETDetails
- GETAccount States
- GETAggregate Credits
- GETAlternative Titles
- GETChanges
- GETContent Ratings
- GETCredits
- GETEpisode Groups
- GETExternal IDS
- GETImages
- GETKeywords
- GETLatest
- GETLists
- GETRecommendations
- GETReviews
- GETScreened Theatrically
- GETSimilar
- GETTranslations
- GETVideos
- GETStreaming Providers
- POSTAdd Rating
- DELDelete Ratings
TV Series Lists
TV Seasons
TV Providers
TV Episode Groups
Watch Providers
People
People List
Credits
Review
Certifications
Authentication
Create Session ID(with login)
This endpoint allows you to validate a request token by using a username and password.
POST
/
3
/
authentication
/
token
/
validate_with_login
Copy
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": "@Nov022003",
"request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17",
"username": "gloriaSilver"
}'
Copy
{
"expires_at": "2024-12-17 23:15:51 UTC",
"request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17",
"success": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200 - application/json
Create session ID(with login)
The response is of type object
.
Copy
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": "@Nov022003",
"request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17",
"username": "gloriaSilver"
}'
Copy
{
"expires_at": "2024-12-17 23:15:51 UTC",
"request_token": "7ae547a16d3bba575359ceb2d6aa9e23525b1f17",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.