Skip to main content
Version: 1.0
Endpoints Summary
GET Asset history

GET Asset history

Returns the minting/burning history of one MultiAsset given its fingerprint.

GET /api/core/assets/{fingerprint}/history

🎰 Parameters

NameDescriptionInTypeRequired
fingerprintThe CIP14 fingerprint for the MultiAsset.pathstringtrue
page_noPage number to retrieve - defaults to 1queryintegerfalse
page_sizeNumber of results per page - defaults to 20 - max 100queryintegerfalse
orderPrescribes in which order the minting/burning events are returned - "desc" descending (default) from newest to oldest - "asc" ascending from oldest to newestquerystringfalse

👨‍💻 Code samples

const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' }); 
const history = await CBI.core.assets.history_({ fingerprint: "asset1gqp4wdmclgw2tqmkm3nq7jdstvqpesdj3agnel" });
console.log(history);

💌 Response Codes

OK: Successful request.

[
"..."
]

💌 Response Schemas

Status Code 200

NameTypeDescription
event_idinteger(int64)The Multi-Asset minting/buring event unique identifier.
tx_hash_hexstringThe hexadecimal encoding of the hash identifier of the transaction containing this event.
quantitynumber(double)The amount of the Multi Asset to mint (can be negative to "burn" assets).
event_timestring(date-time)The event creation time (time of the block containing it).
block_nointeger(int32)The block number containing the minting/buring transaction for this event.