TEASEDocs
API ReferenceInbox & Broadcasts

List fans waiting for a reply

Returns the live queue of fans awaiting a reply, longest wait first and higher-value fans prioritized. Requires a read-scoped key.

Authorization

bearerAuth
AuthorizationBearer <token>

Your al_live_<prefix>_<secret> API key. Mint and manage keys in the dashboard.

In: header

Query Parameters

min_wait_min?integer

Only include fans who have waited at least this many minutes.

Range0 <= value
Default0
limit?integer

Maximum number of waiting fans to return.

Range1 <= value <= 500
Default50

Response Body

application/json

application/json

GET
/api/admin/chatters/waiting
curl -X GET "https://example.com/api/admin/chatters/waiting"
{  "fans": [    {      "fan_id": "fan_8841920",      "waiting_seconds": 5400,      "unread_count": 2    }  ]}
{  "detail": "Not authenticated"}