Skip to main content
GET
/
api
/
auth
/
validate-token
Validate current access token
curl --request GET \
  --url https://tandem.hlofiys.xyz/api/auth/validate-token \
  --header 'Authorization: Bearer <token>'
{
  "message": "Token is valid."
}

Authorizations

Authorization
string
header
required

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

Response

Token is valid.

message
string
Example:

"Token is valid."