API Reference · Workspace

Live status of a workspace's workloads

Live status of a workspace's workloads

GET/v1/tenants/{name}/status

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

200Per-workload phase, endpoints and messages.

curl https://api.live-llm.com/v1/tenants/acme/status \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/status
Fill required path param: name.
Example response200
{
  "phase": "Ready",
  "workloads": [
    {
      "id": "web",
      "ready": true,
      "phase": "Running",
      "url": "https://web-80-acme.cloud.live-llm.com"
    },
    {
      "id": "app-db",
      "ready": true,
      "phase": "Running"
    }
  ],
  "events": [
    {
      "type": "Normal",
      "reason": "Started",
      "message": "Started container web",
      "object": "pod/acme-web-6b9f",
      "age": "2m"
    }
  ]
}