# Account Stats

{% hint style="info" %}
**Note :** This endpoint is throttled to **10 calls/minute** regardless of API Pro tier.
{% endhint %}

```
https://api.vechainstats.com/v2/account/stats
    ?date=2023-09-25
    &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": {
        "addresses_known": 2197260,
        "addresses_new": 1710,
        "addresses_active": 6798,
        "addresses_seen": 10480
    },
    "meta": {
        "date": "2023-09-22",
        "expanded": true,
        "partial_data": false,
        "timestamp": 1695653926
    }
}
```

{% endtab %}
{% endtabs %}
