Skip to main content
GET
/
api
/
auth
/
verify-token
Verify the bearer token is valid
curl --request GET \
  --url https://your-instance.example.com/api/auth/verify-token \
  --header 'Authorization: Bearer <token>'
{
  "message": "Token is good"
}

Documentation Index

Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt

Use this file to discover all available pages before exploring further.

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
required
Example:

"Token is good"