For the complete documentation index, see llms.txt. This page is also available as Markdown.

VET/VTHO Balance

Returns the VET and VTHO balance of a given address. The field 'vet_staked' shows the amount of VET held in Stargate node NFTs, the official staking mechanism of vechain.

https://api.vechainstats.com/v2/account/vet-vtho
    ?address=0x61c3ba79478f8fd35181da94aae1a813384f0e96
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address of which you want to query the VET and VTHO balance.

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "vet": "5957.929529697327753023",
        "vet_staked": "3380000",
        "vtho": "1365231.827454740375982794"
    },
    "meta": {
        "address": "0x61c3ba79478f8fd35181da94aae1a813384f0e96",
        "timestamp": 1753706216
    }
}

Last updated