GET
/
3
/
authentication
curl --request GET \
  --url https://api.themoviedb.org/3/authentication \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 1,
  "status_message": "Success.",
  "success": true
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json
validate key
status_code
number

The value of 1 typically suggests that there are no errors and the operation completed as intended.

Example:

1

status_message
string

The message "Success" confirms the operation's success.

Example:

"Success."

success
boolean

signifies that the request was processed successfully.

Example:

true