# Block Daily Stats

```
https://api.vechainstats.com/v2/block/stats
    ?date=2023-09-21
    &expanded=true
    &VCS_API_KEY=your_api_key
```

{% tabs %}
{% tab title="Request" %}

| Parameter    | Description                                                                                          |
| ------------ | ---------------------------------------------------------------------------------------------------- |
| date         | The requested date formatted as YYYY-MM-DD                                                           |
| expanded     | Either `true` or `false`. Setting this option to `true` expands the response with extra information. |
| {% endtab %} |                                                                                                      |

{% tab title="Response" %}

```json
{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "block_height_first": 16473008,
        "block_height_last": 16477572,
        "block_count": 4565,
        "block_total_size": 34946772,
        "block_total_gas_limit": 136573351403,
        "block_total_gas_used": 11843923045,
        "txns_total_count": 21532,
        "clauses_total_count": 243016,
        "vtho_total_paid": 120699.67,
        "vtho_total_rewarded": 36210.18,
        "vtho_total_burned": 84489.77
    },
    "meta": {
        "date": "2023-09-21",
        "expanded": true,
        "partial_data": true,
        "timestamp": 1695300045
    }
}
```

{% endtab %}
{% endtabs %}
