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

Request successful

The response is of type object.