Skip to content

List Wallet Currencies by Type

GET/web/v1/wallet-currencies/{walletTypeValue} JWT

Retrieves currency configurations filtered by wallet type. Optionally returns only enabled currencies.

Authentication

Requires a valid JWT token.

Request Parameters

NameTypeRequiredInDescription
walletTypeValueintegerRequiredpathWallet type enum value (e.g. 35010401 = INTERNAL) (path parameter)
enabledOnlybooleanOptionalqueryIf 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 StatusCodeDescription
4004000Invalid wallet type value
4014010Unauthorized

Notes

  • Use enabledOnly=true to filter for currencies that are currently active.

SlaunchX Internal Documentation