2020-10-28 11:08:49 -04:00
---
2021-04-23 11:09:37 -04:00
stage: Manage
2022-01-26 22:14:06 -05:00
group: Authentication and Authorization
2020-11-26 01:09:20 -05:00
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2020-10-28 11:08:49 -04:00
---
2021-09-09 08:09:09 -04:00
# Application statistics API **(FREE SELF)**
2019-09-08 23:38:42 -04:00
## Get current application statistics
List the current statistics of the GitLab instance. You have to be an
administrator in order to perform this action.
2020-12-04 16:09:29 -05:00
NOTE:
2019-09-08 23:38:42 -04:00
These statistics are approximate.
2020-02-28 22:07:51 -05:00
```plaintext
2019-09-08 23:38:42 -04:00
GET /application/statistics
```
2020-01-30 10:09:15 -05:00
```shell
2020-05-27 20:08:37 -04:00
curl --header "PRIVATE-TOKEN: < your_access_token > " "https://gitlab.example.com/api/v4/application/statistics"
2019-09-08 23:38:42 -04:00
```
Example response:
```json
{
"forks": "10",
"issues": "76",
"merge_requests": "27",
"notes": "954",
"snippets": "50",
"ssh_keys": "10",
"milestones": "40",
"users": "50",
"groups": "10",
"projects": "20",
"active_users": "50"
}
```