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

Account VTHO Info

Returns the paid, generated and sponsored VTHO of a requested address

Note : This endpoint is throttled to 30 calls/minute regardless of API Pro tier.

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

address

The address you want to query

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "vtho_paid": "73.862420000000000000",
        "vtho_generated": "20708583.9283780002000000",
        "vtho_sponsored": "0"
    },
    "meta": {
        "address": "0x0da8fa475c8272d21be204fe8112d1e2cd698c96",
        "timestamp": 1695971364
    }
}

Last updated