Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.getlilac.com/llms.txt

Use this file to discover all available pages before exploring further.

The status endpoint returns recent live model performance and availability snapshots for the Lilac API. It is public and does not require authentication.

Endpoint

GET https://api.getlilac.com/status

Query Parameters

ParameterTypeDescription
windowstringOptional time window for aggregation. Supported values: 5m, 1h, 24h, 30d. We recommend explicitly passing window.

Example

curl "https://api.getlilac.com/status?window=5m"

Response

{
  "updated_at": "2025-01-15T18:42:11Z",
  "window": "5m",
  "window_secs": 300,
  "stale": false,
  "models": [
    {
      "id": "moonshotai/kimi-k2.6",
      "name": "Kimi K2.6",
      "tps": 142.7,
      "ttfb_seconds": 0.41,
      "uptime_pct": 99.8
    }
  ]
}

Fields

FieldTypeDescription
updated_atstringTimestamp for the snapshot.
windowstringAggregation window used.
window_secsintegerAggregation window in seconds.
stalebooleanWhether the data may be stale.
modelsarrayArray of model status entries.
models[].idstringModel ID.
models[].namestringDisplay name.
models[].tpsfloat | nullAverage throughput in tokens/sec. null when not enough recent data exists.
models[].ttfb_secondsfloat | nullAverage time to first token, in seconds. null when not enough recent data exists.
models[].uptime_pctfloat | nullRequest success percentage for the selected window. null when not enough recent data exists.
Low-traffic models may return null metrics for shorter windows. If you see null values, retry with a wider window such as 1h, 24h, or 30d.