BTNS API - Issues BTNS API
Method Endpoint Returns
GET /api/issues/{address},{block},{token} Returns list of ISSUE transactions
Return Values
Value Type Description
data Array Issue data
allow_list String Transaction Hash of the ALLOW list
block_index Integer Block number containing the transaction
block_list String Transaction Hash of the BLOCK list
callback_amount String Amount of callback_tick that user receives on callback
callback_block Integer Block number after which CALLBACK can occur
callback_tick String Token that user receives on callback
decimals Integer Number of decimal points
description String The asset's description
lock_callback Boolean Flag that indicates if token is locked against CALLBACK actions
lock_description Boolean Flag that indicates if token description is locked
lock_max_mint Boolean Flag that indicates if max_mint is locked
lock_max_supply Boolean Flag that indicates if max_supply is locked
lock_mint Boolean Flag that indicates if token is locked against MINT actions
lock_mint_supply Boolean Flag that indicates if mint_supply is locked
lock_rug Boolean Flag that indicates if token is locked against RUG actions
lock_sleep Boolean Flag that indicates if token is locked against SLEEP actions
lock_supply Boolean Flag that indicates if max_supply is locked
max_mint String Maxiumum amount allowed per MINT action
max_supply String Maxiumum supply allowed for this token
mint_supply String Amount of supply minted in this ISSUE action
source String The address that did the ISSUE action
status String Status of the transaction
tick String Token name (Ex: PIZZA)
transfer Boolean Whether issuance is transfering ownership to a new address
timestamp Integer A UNIX timestamp of when the transaction was processed by the network
transfer String The address that token ownership was transferred to
transfer_supply String The address that any minted supply was transferred to
tx_hash String Transaction Hash
tx_index Integer Transaction Index
total Integer Total number of ISSUES
Example Response
{
    "data": [{
        "allow_list": null,
        "block_list": null,
        "callback_amount": "",
        "callback_block": "",
        "callback_tick": null,
        "decimals": "0",
        "description": "",
        "lock_callback": "",
        "lock_description": "",
        "lock_max_mint": "",
        "lock_max_supply": "",
        "lock_mint": "",
        "lock_mint_supply": "",
        "lock_rug": "",
        "lock_sleep": "",
        "max_mint": "0",
        "max_supply": "1000000",
        "mint_address_max": "",
        "mint_start_block": "",
        "mint_stop_block": "",
        "mint_supply": "1000000",
        "status": "valid",
        "tick": "AIRDROPTEST1",
        "transfer": null,
        "transfer_supply": null
    }],
    "total": 1
}