Get digital asset address for specific asset
GET/v1/digital/addresses/wallet/:walletId/asset/:assetId
Retrieves the digital asset address for a specific asset on a specific wallet. Asset identifier can be UUID, type string (BTC), or ISO 4217 code.
Request
Path Parameters
walletId stringrequired
assetId stringrequired
Responses
- 200
- 400
- 403
- 404
Digital asset address retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
data
object
id stringrequired
address stringrequired
memo string
assetId stringrequired
walletId stringrequired
createdAt date-timerequired
{
"traceId": "string",
"message": "string",
"data": {
"id": "string",
"address": "string",
"memo": "string",
"assetId": "string",
"walletId": "string",
"createdAt": "2024-07-29T15:51:28.071Z"
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
Loading...