A snapshot of the wallet's UTxO set
Generate a snapshot of the wallet's UTxO set.
This endpoint is intended for debugging purposes.
Path parameters
-
walletId
string(hex) Required Minimum length is
40
, maximum length is40
.
GET
/byron-wallets/{walletId}/utxo
curl \
--request GET https://localhost:8090/v2/byron-wallets/{walletId}/utxo
Response examples (406)
{
"message": "string",
"code": "not_acceptable"
}
Response examples (404)
{
"message": "string",
"code": "no_such_wallet",
"info": {
"wallet_id": "2512a00e9653fe49a44a5886202e24d77eeb998f"
}
}
Response examples (200)
{
"entries": [
{
"ada": {
"quantity": 42000000,
"unit": "lovelace"
},
"assets": [
{
"policy_id": "65ab82542b0ca20391caaf66a4d4d7897d281f9c136cd3513136945b",
"asset_name": "string",
"quantity": 42
}
]
}
]
}