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

# Get System Stats

> Return system-wide API usage and market stats.

## Request

This endpoint does not accept query parameters.

## Response

<ResponseField name="total_api_requests" type="integer" />

<ResponseField name="unique_users" type="integer" />

<ResponseField name="available_markets" type="integer" />

## Example

<CodeGroup>
  ```python Python SDK theme={null}
  from entityml import EntityMLClient

  client = EntityMLClient()
  stats = client.analytics.get_system_stats()
  print(stats)
  ```

  ```bash CLI theme={null}
  entityml analytics system-stats
  ```

  ```bash Raw HTTP (cURL) theme={null}
  curl "https://api.entityml.com/api/v1/stats"
  ```
</CodeGroup>

### Example response

```json theme={null}
{
  "total_api_requests": 12840,
  "unique_users": 42,
  "available_markets": 2475
}
```
