Skip to main content
GET
/
loglife
/
users
List registered users
curl --request GET \
  --url http://localhost:18789/loglife/users \
  --header 'Authorization: Bearer <token>'
{
  "count": 2,
  "users": [
    {
      "id": "<string>",
      "name": "<string>",
      "identifiers": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

The API key configured in openclaw.json under plugins.entries.loglife.config.apiKey

Response

Current users list

count
integer
Example:

2

users
object[]