# Get users statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/users`

Get users statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{"properties":{"admin_users":{"type":"integer"},"suspended_users":{"type":"integer"},"total_users":{"type":"integer"}},"required":["total_users","admin_users","suspended_users"],"title":"Enterprise User Stats","type":"object"}
```

## Request examples

### cURL

```shell
curl --request GET \
  --url {protocol}://{hostname}/api/v3/enterprise/stats/users
```
