BTNS API - Destroys BTNS API
Method Endpoint Returns
GET /api/destroys/{address},{token},{block} Returns list of DESTROY transactions
Return Values
Value Type Description
data Array Destroys data
amount String Amount of token destroyed
block_index Integer Block number containing the transaction
memo String Memo message
source String The address that did the DESTROY action
status String Status of the transaction
tick String Token name (Ex: PIZZA)
timestamp Integer A UNIX timestamp of when the transaction was processed by the network
tx_hash String Transaction Hash
tx_index Integer Transaction Index
total Integer Total number of DESTROYS
Example Response
{
    "data": [{
            "amount": "2",
            "block_index": 2575916,
            "memo": "memo2",
            "source": "mvThcDEbeqog2aJ7JNj1FefUPaNdYYGqHt",
            "status": "valid",
            "tick": "TESTDESTROY",
            "timestamp": 1706384422,
            "tx_hash": "84d7b1a5c58d2135074442143496b53cff8867c37b7aad9bbc468192881251c9",
            "tx_index": 446
        },
        {
            "amount": "1",
            "block_index": 2575916,
            "memo": "memo1",
            "source": "mvThcDEbeqog2aJ7JNj1FefUPaNdYYGqHt",
            "status": "valid",
            "tick": "TESTDESTROY",
            "timestamp": 1706384422,
            "tx_hash": "84d7b1a5c58d2135074442143496b53cff8867c37b7aad9bbc468192881251c9",
            "tx_index": 446
        },
        {
            "amount": "2",
            "block_index": 2575916,
            "memo": "memo",
            "source": "mvThcDEbeqog2aJ7JNj1FefUPaNdYYGqHt",
            "status": "valid",
            "tick": "TESTDESTROY",
            "timestamp": 1706384422,
            "tx_hash": "3d0bae4c24c82c14a150d8ee1499fabc716642e01e92ff74f96740f5d7f869b0",
            "tx_index": 445
        }
    ],
    "total": 3
}