# Get all statistics

From **GitHub v3 REST API**.

`GET /enterprise/stats/all`

Get all statistics

## Responses

### `200`

Response

### `application/json`

- Type: `object`

```json
{
  "comments": {
    "total_commit_comments": 6,
    "total_gist_comments": 28,
    "total_issue_comments": 366,
    "total_pull_request_comments": 30
  },
  "gists": {
    "private_gists": 151,
    "public_gists": 25,
    "total_gists": 178
  },
  "hooks": {
    "active_hooks": 23,
    "inactive_hooks": 4,
    "total_hooks": 27
  },
  "issues": {
    "closed_issues": 96,
    "open_issues": 83,
    "total_issues": 179
  },
  "milestones": {
    "closed_milestones": 1,
    "open_milestones": 6,
    "total_milestones": 7
  },
  "orgs": {
    "disabled_orgs": 0,
    "total_orgs": 33,
    "total_team_members": 314,
    "total_teams": 60
  },
  "pages": {
    "total_pages": 36
  },
  "pulls": {
    "mergeable_pulls": 21,
    "merged_pulls": 60,
    "total_pulls": 86,
    "unmergeable_pulls": 3
  },
  "repos": {
    "fork_repos": 18,
    "org_repos": 51,
    "root_repos": 194,
    "total_pushes": 3082,
    "total_repos": 212,
    "total_wikis": 15
  },
  "users": {
    "admin_users": 45,
    "suspended_users": 21,
    "total_users": 254
  }
}
```

```json
{"properties":{"comments":{"$ref":"#/components/schemas/enterprise-comment-overview"},"gists":{"$ref":"#/components/schemas/enterprise-gist-overview"},"hooks":{"$ref":"#/components/schemas/enterprise-hook-overview"},"issues":{"$ref":"#/components/schemas/enterprise-issue-overview"},"milestones":{"$ref":"#/components/schemas/enterprise-milestone-overview"},"orgs":{"$ref":"#/components/schemas/enterprise-organization-overview"},"pages":{"$ref":"#/components/schemas/enterprise-page-overview"},"pulls":{"$ref":"#/components/schemas/enterprise-pull-request-overview"},"repos":{"$ref":"#/components/schemas/enterprise-repository-overview"},"users":{"$ref":"#/components/schemas/enterprise-user-overview"}},"type":"object"}
```

## Request examples

### cURL

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