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
Create User Session
This endpoint creates a session ID for the user after validating the request token.
POST
/
authentication
/
session
/
new
Copy
curl --request POST \
--url https://api.themoviedb.org/authentication/session/new \
--header 'Content-Type: application/json' \
--data '{
"request_token": "{{request_token}}"
}'
Copy
{
"session_id": "000c5b62c270a55ef8c64ee02ba56ba2fded1f55",
"success": true
}
Query Parameters
Example:
"63365ecd10409ee95d673fd7f8c095e3"
Body
application/json
Response
200 - application/json
Create User Session Example
The response is of type object
.
Copy
curl --request POST \
--url https://api.themoviedb.org/authentication/session/new \
--header 'Content-Type: application/json' \
--data '{
"request_token": "{{request_token}}"
}'
Copy
{
"session_id": "000c5b62c270a55ef8c64ee02ba56ba2fded1f55",
"success": true
}
Assistant
Responses are generated using AI and may contain mistakes.