POST
/
3
/
authentication
/
session
/
new
Create session
curl --request POST \
  --url https://api.themoviedb.org/3/authentication/session/new \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "request_token": "97e8b69a2897f0b530ccb46c5cb352dd0a387e7c"
}'
{
  "session_id": "7274a757c27767f63eda2c6599afd5b280047f2d",
  "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

create session

The response is of type object.