56 lines
1.3 KiB
Markdown
56 lines
1.3 KiB
Markdown
---
|
|
stage: Create
|
|
group: Source Code
|
|
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"
|
|
type: reference, api
|
|
---
|
|
|
|
# Project statistics API **(FREE)**
|
|
|
|
Every API call to [project](../user/project/index.md) statistics must be authenticated.
|
|
Retrieving these statistics requires write access to the repository.
|
|
|
|
This API retrieves the number of times the project is either cloned or pulled
|
|
with the HTTP method. SSH fetches are not included.
|
|
|
|
## Get the statistics of the last 30 days
|
|
|
|
```plaintext
|
|
GET /projects/:id/statistics
|
|
```
|
|
|
|
| Attribute | Type | Required | Description |
|
|
| ---------- | ------ | -------- | ----------- |
|
|
| `id` | integer / string | yes | The ID or [URL-encoded path of the project](index.md#namespaced-path-encoding) |
|
|
|
|
Example response:
|
|
|
|
```json
|
|
{
|
|
"fetches": {
|
|
"total": 50,
|
|
"days": [
|
|
{
|
|
"count": 10,
|
|
"date": "2018-01-10"
|
|
},
|
|
{
|
|
"count": 10,
|
|
"date": "2018-01-09"
|
|
},
|
|
{
|
|
"count": 10,
|
|
"date": "2018-01-08"
|
|
},
|
|
{
|
|
"count": 10,
|
|
"date": "2018-01-07"
|
|
},
|
|
{
|
|
"count": 10,
|
|
"date": "2018-01-06"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
```
|