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

GET Asset addresses

Returns the list of addresses holding a balance in one specific MultiAsset given its fingerprint.

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

🎰 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 addresses are returned - "desc" descending (default) quantity held - "asc" ascending quantity heldquerystringfalse

👨‍💻 Code samples

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

💌 Response Codes

OK: Successful request.

[
"..."
]

💌 Response Schemas

Status Code 200

NameTypeDescription
addressstringThe output address holding a balance in the given Multi-Asset.
quantitynumber(double)The balance held at this address of the given MultiAsset.