Returns a list of UTXOs (Unspent Transaction Outputs) for a given vault, with optional filtering by vault account, asset, address, and spend status.
Unique identifier of the vault.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.
Filter UTXOs by blockchain address.
Filter UTXOs by asset id.
Filter by spend status (true - spent, false - unspent). If not provided, default is false (only unspent UTXOs are returned).
Defines how many items should be returned in the response per page basis.
Defines the id of the previous listed record id from which the current list should start from.
Filter UTXOs belonging to a specific vault account.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.
In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.
Defines how many items should be returned in the response per page basis.
Defines the id of the previous listed record id from which the current list should start from.
Defines whether or not there are more elements available after this set.
Blockchain address that received the UTXO.
Identifier of the asset associated with this UTXO.
Unix timestamp (milliseconds) when the UTXO was created or confirmed.
Output index within the transaction.
Indicates whether this UTXO has been spent (true) or is still unspent (false).
Hash of the blockchain transaction that created this UTXO.
Unique identifier for the address/UTXO record, used as the value for the startingAfter pagination parameter when fetching the next page of results.
Amount of the asset.
Asset unit (e.g., BTC, LTC, USDC).
Identifier of the vault account that owns this UTXO.
cb233681a8ee35665296c1824c1f67bc46691788
PSqeqRLap8rBc/wogNU1DeGGUPb2VyVtg6GiBOaBnYQ=
1681885776
zYgKeueoOq
{
"apiVersion": "2026-03-20",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"limit": 50,
"startingAfter": "5ca21f92cf5431000105d1a7",
"hasMore": true,
"items": [
{
"address": "tb1qulfd8mt9j57sxv6k4gqz3766n5qa97049kuc35",
"assetId": "6913471c6b2794841dc8fb6f",
"createdTimestamp": 1705399159,
"index": "2",
"isSpent": false,
"transactionId": "c7ef013b7e4230307839db369e5d86944b5239493d4f31359c340cfcca97fb4d",
"utxoId": "6960d8d889a82e0ff42e0f92",
"value": {
"amount": "0.001",
"assetUnit": "BTC"
},
"vaultAccountId": "6936c7e88097040007891abe"
}
]
}
}