API Reference · Workspace

Quota and current usage

Quota and current usage

GET/v1/tenants/{name}/quota

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

200Allocated vs used CPU / memory / storage.

curl https://api.live-llm.com/v1/tenants/acme/quota \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/quota
Fill required path param: name.
Example response200
{
  "hard": {
    "requests.cpu": "32",
    "requests.memory": "64Gi",
    "requests.storage": "500Gi",
    "pods": "200"
  },
  "used": {
    "requests.cpu": "500m",
    "requests.memory": "512Mi",
    "requests.storage": "20Gi",
    "pods": "3"
  }
}