Skip to main content
GET
/
v1
/
portal
/
status
curl https://hapi.7331.org/v1/portal/status \
  -b cookies.txt
{
  "online": 5,
  "users": [
    {"user_id": "123456789012345678", "username": "exampleuser"},
    {"user_id": "987654321098765432", "username": "anotheruser"}
  ],
  "muted": false
}
Requires an active session cookie. Returns the current portal presence information and whether the authenticated user is muted.

Response

online
integer
required
Number of users currently connected to the portal.
users
object[]
required
List of currently online users.
muted
boolean
required
Whether the authenticated user is currently muted.
curl https://hapi.7331.org/v1/portal/status \
  -b cookies.txt
{
  "online": 5,
  "users": [
    {"user_id": "123456789012345678", "username": "exampleuser"},
    {"user_id": "987654321098765432", "username": "anotheruser"}
  ],
  "muted": false
}