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

Transactions Out

Returns the transactions out of a requested address

https://api.vechainstats.com/v2/account/txout
    ?address=0xA129f34Ad3e333373425088De3e6d7C09E0B7Dab
    &page=1
    &sort=asc
    &VCS_API_KEY=your_api_key
Parameter
Description

address

The address you want to query

page

The integer page number, the available pages are shown in the response meta fields

sort

The sorting preference, use asc to sort by ascending and desc to sort by descending

Output below is shortened and only serves as an example

{
    "status": {
        "success": true,
        "message": "OK"
    },
    "data": [
        {
            "txid": "0x4543676bf59d78993c9c6a66f88f821d2b651a9f2f401e38f403c96eb990d2a5",
            "status": "success",
            "block_height": 11851304,
            "block_timestamp": 1649034020,
            "clauses": 1,
            "vtho_paid": "0.89153"
        },
        {
            "txid": "0xf5e9f3469713fe191611bac0ab1cba4b7b74cae54b7db63772b52fcb361d5603",
            "status": "success",
            "block_height": 11851304,
            "block_timestamp": 1649034020,
            "clauses": 1,
            "vtho_paid": "0.81653"
        },
        {
            "txid": "0x08d29b9e3ad73d94f2a907fe2cb8b0d39f77a74d6a77537ad44f85cf79fcd2c1",
            "status": "reverted",
            "block_height": 11872643,
            "block_timestamp": 1649247420,
            "clauses": 1,
            "vtho_paid": "1.03089"
        }
    ],
    "meta": {
        "address": "0xa129f34ad3e333373425088de3e6d7c09e0b7dab",
        "count": 204361,
        "page": 1,
        "pages": 2044,
        "per_page": 100,
        "sort": "asc",
        "timestamp": 1696253088
    }
}

Last updated