> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Logs Stats

> Operational log endpoint for realtime debugging and log telemetry.

Operational log endpoint for realtime debugging and log telemetry.

### Response

`LogsStatsResponse`

<ResponseField name="connectedClients" type="integer" required />

<ResponseField name="ok" type="boolean" required />

<ResponseField name="tenant" type="string" required />

<ResponseField name="timestamp" type="string" required />

### Status codes

| Code  | Meaning          |
| ----- | ---------------- |
| `200` | Log stream stats |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.voice.stateset.com/api/v1/logs/stats' \
    --header "Authorization: Bearer $STATESET_VOICE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "connectedClients": 1,
    "ok": true,
    "tenant": "acme-outdoors",
    "timestamp": "2026-08-31T14:22:05Z"
  }
  ```
</ResponseExample>
