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

Network Stats

Returns key metrics of the VechainThor blockchain for a requested timeframe

https://api.vechainstats.com/v2/network/stats
    ?timeframe=2023-09-01
    &VCS_API_KEY=your_api_key
Parameter
Description

timeframe

Timeframe given in YYYY or YYYY-MM or YYYY-MM-DD

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": {
        "block_count": 8639,
        "block_total_size": 53054967,
        "txns_total_count": 19597,
        "txns_reverted": 1436,
        "txns_mtt": 10291,
        "txns_mpp": 115,
        "txns_vip191": 13600,
        "clauses_total_count": 374487,
        "vtho_total_paid": "182206.360750156814771421",
        "vtho_total_rewarded": "54668.198547262042790186",
        "vtho_total_burned": "127544.452525109299999947"
    },
    "meta": {
        "timeframe": "2023-09-01",
        "days": 1,
        "partial_data": false,
        "timestamp": 1695992994
    }
}

Last updated