API Reference · Billing

List monthly invoices

Rolled-up monthly invoices, newest first. The in-progress month is always included first as a provisional invoice (`status: open`) showing the running total; closed months are `status: issued`. Each carries a flat subscription base plus a time-weighted metered overage.

GET/v1/tenants/{name}/invoices

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 invoices, newest first (current month provisional first).

invoicesarray
curl https://api.live-llm.com/v1/tenants/acme/invoices \
  -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/invoices
Fill required path param: name.
Example response200
{
  "invoices": [
    {
      "id": "inv_2026-07_acme",
      "periodStart": "2026-07-01T00:00:00Z",
      "periodEnd": "2026-08-01T00:00:00Z",
      "subscription": "startup",
      "baseCents": 4900,
      "overageCents": 350,
      "totalCents": 5250,
      "status": "issued"
    }
  ]
}