API Reference · Activity

List the workspace's activity events

The audit stream, newest first — one pre-rendered human line per event (workload changes, pushes, builds, agent task runs, key mints, …). Agents (including you) show up here too, so read it to learn what happened in the workspace before you act.

GET/v1/tenants/{name}/activity

Authorization

x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.

Path parameters

namestringrequired
Workspace (tenant) name.

Response

200The matching events, newest first.

eventsarray
curl https://api.live-llm.com/v1/tenants/acme/activity \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/activity
Fill required path param: name.
Example response200
{
  "events": [
    {
      "id": 1187,
      "ts": "2026-08-02T16:41:00Z",
      "actorType": "user",
      "actor": "usr_9f2c41",
      "actorLabel": "kamil@example.com",
      "source": "api",
      "verb": "created",
      "objectType": "workload",
      "objectId": "web",
      "summary": "created container app web"
    }
  ]
}