# Get comment statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/comments`

Get comment statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{"properties":{"total_commit_comments":{"type":"integer"},"total_gist_comments":{"type":"integer"},"total_issue_comments":{"type":"integer"},"total_pull_request_comments":{"type":"integer"}},"required":["total_commit_comments","total_gist_comments","total_issue_comments","total_pull_request_comments"],"title":"Enterprise Comment Stats","type":"object"}
```

## Request examples

### cURL

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