# Account Info

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

```
https://api.vechainstats.com/v2/account/info
    ?address=0xFF5ba88a17b2E16D23FF6647E9052E937AcB1406
    &expanded=true
    &VCS_API_KEY=your_api_key
```

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

| Parameter    | Description                                                                                          |
| ------------ | ---------------------------------------------------------------------------------------------------- |
| address      | The address you want to query                                                                        |
| 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": {
        "vcs_alias": "Coinbase (Hot Wallet 4)",
        "has_code": false,
        "node_type": "",
        "balance_vet": "343339.037779306251836017",
        "balance_vtho": "60837952.2920319642473895",
        "first_seen_block": 15694364,
        "first_seen_timestamp": 1687467730,
        "last_seen_block": 16521178,
        "last_seen_timestamp": 1695736140,
        "has_txns_in": true,
        "has_txns_out": true
    },
    "meta": {
        "address": "0xff5ba88a17b2e16d23ff6647e9052e937acb1406",
        "expanded": true,
        "timestamp": 1695736222
    }
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Works for both regular accounts and contract addresses
{% endhint %}
