Skip to main content

Asset transactions

GET /assets/:asset/transactions

List of a specific asset transactions

Request

Path Parameters

    asset string required

    Concatenation of the policy_id and hex-encoded asset_name

    Example: b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e

Query Parameters

    count integer

    Possible values: >= 1 and <= 100

    Default value: 100

    The number of results displayed on one page.

    page integer

    Possible values: >= 1 and <= 21474836

    Default value: 1

    The page number for listing the results.

    order string

    Possible values: [asc, desc]

    Default value: asc

    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.

Responses

Return the information about the history of a specific asset


Schema
  • Array [
  • tx_hash string required

    Hash of the transaction

    tx_index integer required

    Transaction index within the block

    block_height integer required

    Block height

    block_time integer required

    Block creation time in UNIX time

  • ]
Loading...