# Get gist statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/gists`

Get gist statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{"properties":{"private_gists":{"type":"integer"},"public_gists":{"type":"integer"},"total_gists":{"type":"integer"}},"required":["total_gists","private_gists","public_gists"],"title":"Enterprise Gist Stats","type":"object"}
```

## Request examples

### cURL

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