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

GET Asset transactions

Returns details of transactions involving one MultiAsset given its fingerprint.

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

🎰 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 transactions 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 transactions = await CBI.core.assets.transactions_({ fingerprint: "asset1gqp4wdmclgw2tqmkm3nq7jdstvqpesdj3agnel" });
console.log(transactions);

💌 Response Codes

OK: Successful request.

[
"..."
]

💌 Response Schemas

Status Code 200

NameTypeDescription
tx_idinteger(int64)The transaction unique identifier.
hash_hexstringThe hexadecimal encoding of the hash identifier of the transaction.
epoch_nointeger(int32)The epoch number.
block_nointeger(int32)The block number containing the minting/buring transaction for this event.
event_timestring(date-time)The time (UTCTime) of the block containing this transaction.