GET
/
policy
/
{policy}
/
assets
List assets of a policy
curl --request GET \
  --url https://mainnet.gomaestro-api.org/v1/policy/{policy}/assets \
  --header 'api-key: <api-key>'
{
  "data": [
    {
      "asset_name": "6164616d616e74",
      "asset_name_ascii": "adamant",
      "fingerprint": "asset105lxc60yjpqygjsnn29e5hjyafnfw75pqwwza2",
      "total_supply": "1",
      "asset_standards": {
        "cip25_metadata": {
          "augmentations": [],
          "core": {
            "handleEncoding": "utf-8",
            "og": 0,
            "prefix": "$",
            "termsofuse": "https://adahandle.com/tou",
            "version": 0
          },
          "description": "The Handle Standard",
          "image": "ipfs://Qmai8iwE1Diw5YZVYSpSPAbXM5AVprheve8AAXJzwXoftf",
          "name": "$adamant",
          "website": "https://adahandle.com"
        },
        "cip68_metadata": null
      }
    },
    {
      "asset_name": "6264736d",
      "asset_name_ascii": "bdsm",
      "fingerprint": "asset1qyv6sdhq0fw7mxt0zl7gwd2h2hs4evpe0zl73r",
      "total_supply": "1",
      "asset_standards": {
        "cip25_metadata": {
          "augmentations": [],
          "core": {
            "handleEncoding": "utf-8",
            "og": 0,
            "prefix": "$",
            "termsofuse": "https://adahandle.com/tou",
            "version": 0
          },
          "description": "The Handle Standard",
          "image": "ipfs://QmfTpy3ybWL1teCMVAieh7atHtYgpcCZ5Ew58eSUxHgZFb",
          "name": "$bdsm",
          "website": "https://adahandle.com"
        },
        "cip68_metadata": null
      }
    }
  ],
  "last_updated": {
    "timestamp": "2023-10-18 07:30:52",
    "block_hash": "0e1e924710135acfe200ab13d290bd282a67584fd54456f0dcac0aeaa38bb2c2",
    "block_slot": 106047961
  },
  "next_cursor": "YmRzbQ"
}

Authorizations

api-key
string
header
required

Project API Key

Path Parameters

policy
string
required

Hex encoded Policy ID

Query Parameters

count
integer
default:100

The max number of results per page

Required range: x >= 0
cursor
string | null

Pagination cursor string, use the cursor included in a page of results to fetch the next page

Response

200
application/json

List of assets paired with short information summary

A paginated response. Pass in the next_cursor in a subsequent request as the cursor query parameter to fetch the next page of results.