> ## 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 YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "connectedClients": 1,
    "ok": true,
    "tenant": "string",
    "timestamp": "string"
  }
  ```
</ResponseExample>
