# Installation Statistics

## Installation count of all projects that use instl.sh

<mark style="color:blue;">`GET`</mark> `https://instl.sh/api/v1/stats`

{% tabs %}
{% tab title="200: OK Installation count of all projects that use instl.sh" %}

```javascript
{
    "installer/instl-demo/windows": 1337,
    "installer/instl-demo/linux": 420, 
    "installer/instl-demo/macos": 1234
}
```

{% endtab %}
{% endtabs %}

## Installation count of specific project

<mark style="color:blue;">`GET`</mark> `https://instl.sh/api/v1/stats/user/repo`

#### Path Parameters

| Name                                   | Type   | Description                    |
| -------------------------------------- | ------ | ------------------------------ |
| user<mark style="color:red;">\*</mark> | String | Owner of the GitHub repository |
| repo<mark style="color:red;">\*</mark> | String | GitHub repository name         |

{% tabs %}
{% tab title="200: OK Installation count per platform" %}

```javascript
{
    "linux": 3,
    "macos": 10,
    "windows": 15,
    "total": 28
}
```

{% endtab %}
{% endtabs %}

## Total count of installations handled by instl

<mark style="color:blue;">`GET`</mark> `https://instl.sh/api/v1/stats/total`

{% tabs %}
{% tab title="200: OK Total installations" %}

```
1337
```

{% endtab %}
{% endtabs %}
