List Wallet Currencies by Type
GET
/web/v1/wallet-currencies/{walletTypeValue} JWTRetrieves currency configurations filtered by wallet type. Optionally returns only enabled currencies.
Authentication
Requires a valid JWT token.
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
walletTypeValue | integer | Required | path | Wallet type enum value (e.g. 35010401 = INTERNAL) (path parameter) |
enabledOnly | boolean | Optional | query | If true, only return enabled currencies. Default: false |
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
}
]
}Error Responses
| HTTP Status | Code | Description |
|---|---|---|
| 400 | 4000 | Invalid wallet type value |
| 401 | 4010 | Unauthorized |
Notes
- Use
enabledOnly=trueto filter for currencies that are currently active.