Use this file to discover all available pages before exploring further.
Return the current concurrency for a project — how many users are streaming right now, and how many are waiting in the queue. This is the single hottest read endpoint in the API and the right primitive for building monitoring dashboards, autoscaling signals, and capacity alerts.
This endpoint is read-optimized, but it is not free.
Do not poll faster than once every 5 seconds. Aggressive polling against liveStats is the most common cause of fair-use throttling. If you need sub-second updates, contact support — there is no streaming or websocket alternative today.
Practical defaults:
Operator dashboards — poll every 5–10s.
Background telemetry — poll every 30–60s and write to your time-series database.
Alerting — poll every 30s and require N consecutive samples above threshold before paging.
Always handle failures gracefully in a polling loop — one network blip should not crash your dashboard process. Wrap each call in try/catch and keep polling.