Skip to content

List Enabled Wallet Currencies

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

Retrieves only the enabled currencies for a specific wallet type. Convenience endpoint equivalent to calling the type-filtered endpoint with enabledOnly=true.

Authentication

Requires a valid JWT token.

Request Parameters

NameTypeRequiredInDescription
walletTypeValueintegerRequiredpathWallet type enum value (e.g. 35010401 = INTERNAL) (path parameter)

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

SlaunchX Internal Documentation