Skip to main content

Asset history

GET /assets/:asset/history

History of a specific asset

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 containing the asset action

    action string required

    Possible values: [minted, burned]

    Action executed upon the asset policy

    amount string required

    Asset amount of the specific action

  • ]
Loading...