Skip to main content
POST
/
3
/
authentication
/
session
/
new
Create Session
curl --request POST \
  --url https://api.themoviedb.org/3/authentication/session/new \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 34,
  "status_message": "The resource you requested could not be found.",
  "success": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response