POST
/
api
/
v1
/
token
/
fungible
/
burn
curl --request POST \
  --url https://dash.betteruseblockchain.com/api/v1/token/fungible/burn \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "network": "ALGO",
  "contractAddress": "<string>",
  "fromPrivateKey": "<string>",
  "fee": "<string>"
}'
{
  "data": {
    "txId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
network
enum<string>
required

The blockchain network (must be 'ALGO').

Available options:
ALGO
contractAddress
string
required

The contract address of the token.

fromPrivateKey
string
required

The sender's private key.

fee
string
required

The transaction fee for ALGO network.

Response

200
application/json
Tokens burned successfully.
data
object