List Assets
List all assets associated with the wallet, and their metadata if known.
An asset is associated with a wallet if it is involved in a transaction of the wallet.
Path parameters
-
walletId
string(hex) Required Minimum length is
40
, maximum length is40
.
GET
/byron-wallets/{walletId}/assets
curl \
--request GET https://localhost:8090/v2/byron-wallets/{walletId}/assets
Response examples (406)
{
"message": "string",
"code": "not_acceptable"
}
Response examples (200)
[
{
"policy_id": "65ab82542b0ca20391caaf66a4d4d7897d281f9c136cd3513136945b",
"asset_name": "string",
"fingerprint": "asset1rjklcrnsdzqp65wjgrg55sy9723kw09mlgvlc3",
"metadata": {
"name": "SwaggerCoin",
"description": "string",
"ticker": "SWAG",
"decimals": 2,
"url": "https://example.com",
"logo": "string"
},
"metadata_error": "fetch"
}
]