List All Wallet Currencies
GET
/web/v1/wallet-currencies JWTRetrieves all currency configurations for the current institution, including both enabled and disabled currencies.
Authentication
Requires a valid JWT token.
Request Parameters
No parameters required.
Success Response
Success 200
{
"code": "2000",
"message": "SUCCESS",
"data": [
{
"walletTypeValue": 35010401,
"walletTypeName": "INTERNAL",
"currencyValue": 35010101,
"currencyCode": "USD",
"currencyName": "USD",
"enabled": true,
"isFiat": true,
"isStablecoin": false,
"scale": 2
},
{
"walletTypeValue": 35010401,
"walletTypeName": "INTERNAL",
"currencyValue": 35010102,
"currencyCode": "USDT",
"currencyName": "USDT",
"enabled": false,
"isFiat": false,
"isStablecoin": true,
"scale": 6
}
]
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 401 | 4010 | Unauthorized |
Notes
- Returns currencies for the INTERNAL wallet type by default.
- Both enabled and disabled currencies are included in the response.