v1

latestOpenAPI 3.0.0MIT2026-07-171769101.7 KB

Returns utxo entries filtered either by cip 14 fingerprint or by policy id.

This is useful to keep track of the utxo set of a particular asset.

post/asset/utxos

Request body

limitnumber double
policyIdsPolicyId[]
fingerprintsCip14Fingerprint[]
untilBlockstring required

block hash - inclusive

Example request

{
  "policyIds": [
    "b863bc7369f46136ac1048adb2fa7dae3af944c3bbb2be2f216a8d4f"
  ],
  "fingerprints": [
    "asset1c43p68zwjezc7f6w4w9qkhkwv9ppwz0f7c3amw"
  ],
  "after": {
    "tx": "336d520af58ff440b2f20210ddb5ef5b2c035e0ec7ec258bae4b519a87fa1696",
    "block": "2548ad5d0d9d33d50ab43151f574474454017a733e307229fa509c4987ca9782"
  },
  "untilBlock": "cf8c63a909d91776e27f7d05457e823a9dba606a7ab499ac435e7904ee70d7c8"
}

Response

blockstring required
txIdstring required

Example response

[
  {
    "payload": [
      {
        "assetName": "42657272794e617679"
      }
    ]
  }
]