v1

latestOpenAPI 3.0.0MIT2026-07-17124105392.5 KB
Cardano » Assets

Assets of a specific policy

List of asset minted under a specific policy

get/assets/policy/{policy_id}

Path parameters

policy_idstring required

Specific policy_id

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 a specific asset

assetstring required

Concatenation of the policy_id and hex-encoded asset_name

quantitystring required

Current asset quantity

Example response

[
  {
    "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a76e7574636f696e",
    "quantity": "1"
  },
  {
    "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb38a766e",
    "quantity": "100000"
  },
  {
    "asset": "b0d07d45fe9514f80213f4020e5a61241458be626841cde717cb574636f696e",
    "quantity": "18605647"
  }
]