POST
/
api
/
auth
/
tokens
/
anon
{
  "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
  "message": "Anonymous token generated successfully (never expires)"
}

Authorizations

Authorization
string
header
required

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

Response

Anonymous token generated successfully

accessToken
string

Non-expiring anonymous JWT token

Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

message
string

Success message

Example:

"Anonymous token generated successfully (never expires)"