Get asset transfers

Asset transfers

Transfers can be useful to display the history of an NFT.

const assetTransfers = await marketplaceSdk.transfer.getAssetTransfers(
    MY_COLLECTION_ADDRESS,
    'token_id'
)

All our API routes are also available without the SDK. See the get asset transfers route.

Batch transfers

Batch transfers are useful in a use case where you often have large quantities of NFTs transferred in a single transaction. In this case, we will be able to group transfers of a transaction with the number of transfers in each group.

const batchTransfers = await marketplaceSdk.transfer.getBatchTransferActivities(
    MY_COLLECTION_ADDRESS,
    limit,
    0
)

All our API routes are also available without the SDK. See the

get batch transfers route.

Last updated