# Get issue statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/issues`

Get issue statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{"properties":{"closed_issues":{"type":"integer"},"open_issues":{"type":"integer"},"total_issues":{"type":"integer"}},"required":["total_issues","open_issues","closed_issues"],"title":"Enterprise Issue Stats","type":"object"}
```

## Request examples

### cURL

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