mallow docs

Burn

POST
/v2/tx/assets/burn

Builds a transaction that permanently destroys an asset and reclaims its rent to authority, which must be the current owner and is the only signer.

Supported tokenStandard values are nft, pnft, core and core-collection. Collection membership and printed-edition parentage are resolved on-chain, so neither needs to be supplied — but printed-edition burns work for nft only, not pnft. The cnft, objkt, native, erc20, erc721 and erc1155 standards are rejected with a 400.

Burning is irreversible and there is no on-chain confirmation step beyond your signature.

Authorization

ApiKeyAuth
x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Permanently destroys an asset and reclaims its rent. Accepts nft, pnft, core and core-collection only.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v2/tx/assets/burn" \  -H "Content-Type: application/json" \  -d '{    "authority": "string",    "asset": "string",    "tokenStandard": "nft"  }'
{  "result": {    "tx": "string"  }}