Skip to main content
GET
/
api
/
user
/
chat-availability
Get chat availability status
curl --request GET \
  --url https://your-instance.example.com/api/user/chat-availability \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "isAvailable": true,
    "lastStatusChange": "2026-05-18T10:00:00.000Z"
  }
}

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

Chat availability returned

success
boolean
required
Example:

true

data
object
required
Example:
{
  "isAvailable": true,
  "lastStatusChange": "2026-05-18T10:00:00.000Z"
}