v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Assets

Asset transactions

List of a specific asset transactions

get/assets/{asset}/transactions

Path parameters

assetstring required

Concatenation of the policy_id and hex-encoded asset_name

Query parameters

countinteger

The number of results displayed on one page.

pageinteger

The page number for listing the results.

order'asc' | 'desc'

The ordering of items from the point of view of the blockchain, not the page listing itself. By default, we return oldest first, newest last.

Response

Return the information about the history of a specific asset

tx_hashstring required

Hash of the transaction

tx_indexinteger required

Transaction index within the block

block_heightinteger required

Block height

block_timeinteger required

Block creation time in UNIX time

Example response

[
  {
    "tx_hash": "8788591983aa73981fc92d6cddbbe643959f5a784e84b8bee0db15823f575a5b",
    "tx_index": 6,
    "block_height": 69,
    "block_time": 1635505891
  },
  {
    "tx_hash": "52e748c4dec58b687b90b0b40d383b9fe1f24c1a833b7395cdf07dd67859f46f",
    "tx_index": 9,
    "block_height": 4547,
    "block_time": 1635505987
  },
  {
    "tx_hash": "e8073fd5318ff43eca18a852527166aa8008bee9ee9e891f585612b7e4ba700b",
    "tx_index": 0,
    "block_height": 564654,
    "block_time": 1834505492
  }
]