BTNS API - Mints BTNS API
Method Endpoint Returns
GET /api/mints/{address},{block},{token} Returns list of MINT transactions
Return Values
Value Type Description
data Array List data
amount String Amount of token minted
block_index Integer Block number containing the transaction
destination String Address where any minted supply was transferred to
source String The address that did the MINT 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 MINTS
Example Response
{
    "data": [{
            "amount": "1",
            "block_index": 802187,
            "destination": null,
            "source": "bc1qd0rnw59tfevr9yufmjdygssqjvvqvfz90eg8nn",
            "status": "valid",
            "tick": "X",
            "timestamp": 1691469578,
            "tx_hash": "5cde7e39f1061b973159a73ea863a9307d6503460b525afff72ad902ed5d0982",
            "tx_index": 1879
        },
        {
            "amount": "1",
            "block_index": 802187,
            "destination": null,
            "source": "bc1qd0rnw59tfevr9yufmjdygssqjvvqvfz90eg8nn",
            "status": "valid",
            "tick": "X",
            "timestamp": 1691469578,
            "tx_hash": "1cd54c79058d7f8844542cf7efd28cf61e56c1635fb7f238a2bff4c899b3ad44",
            "tx_index": 1878
        }
    ],
    "total": 2
}