# STATISTICS

## GET Label Analytics information

#### Example of request:

```
https://api.certhis.io/stat/label
```

{% tabs %}
{% tab title="REQUEST" %}
Query Parameters<br>

<table><thead><tr><th width="319">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>label_index</td><td>the <code>int</code> representing label id </td></tr></tbody></table>
{% endtab %}

{% tab title="RESPONSE" %}
Sample response

```
{
   "status":true,
   "message":"stat_labels",
   "data":{
      "nb_collection":4,
      "nb_nft_minted":0,
      "nb_nft":78,
      "eth_volume":0,
      "nb_holder":0
   }
}
```

{% endtab %}
{% endtabs %}

## GET User Analytics information

#### Example of request:

```
https://api.certhis.io/stat/user
```

{% tabs %}
{% tab title="REQUEST" %}
Parameters<br>

<table><thead><tr><th width="319">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>wallet</td><td>the <code>string</code> representing the user wallet address</td></tr></tbody></table>
{% endtab %}

{% tab title="RESPONSE" %}
Sample response

```
{
   "status":true,
   "message":"stat_user",
   "data":{
      "nb_created_nft":5,
      "nb_owned_nft":5
   }
}
```

{% endtab %}
{% endtabs %}

## GET Collection Analytics information

#### Example of request:

```
https://api.certhis.io/stat/collection
        ?collection_index=698
```

{% tabs %}
{% tab title="REQUEST" %}
Parameters<br>

<table><thead><tr><th width="319">Parameter</th><th>Description</th></tr></thead><tbody><tr><td>collection_index</td><td>the <code>int</code> representing collection id</td></tr></tbody></table>
{% endtab %}

{% tab title="RESPONSE" %}
Sample response

```
{
   "status":true,
   "message":"stat_collection",
   "data":{
      "nb_nft_minted":1,
      "nb_holder":1,
      "nb_nft":1,
      "eth_volume":0,
      "eth_floor":0
   }
}
```

{% endtab %}
{% endtabs %}
