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

Mempool

Returns information on the status of the mempool

https://api.vechainstats.com/v2/network/mempool
    ?expanded=true
    &VCS_API_KEY=your_api_key

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

Parameter
Description

expanded

Either true or false. Setting this option to true expands the response with extra information.

{
    "status": "success",
    "code": 200,
    "message": "ok",
    "data": {
        "pending_txns": 1,
        "total_clauses": 1,
        "total_size": 157,
        "txlist": [
            "0x1f2168ebf6221c13fad80c0fc87355c10e6d54c32029156d3722e30a2fe62665"
        ]
    },
    "meta": {
        "expanded": true,
        "timestamp": 1695287113
    }
}

Last updated