Skip to content

Get Wallet Flow Types

GET/web/constants/wallet-flow-types None

Returns a list of wallet flow types that indicate the direction or nature of fund movements. The response is localized based on the Accept-Language request header.

Authentication

No authentication required. This is a public endpoint.

Request Parameters

None.

Success Response

Success 200
{
  "code": "2000",
  "message": "SUCCESS",
  "data": [
    {
      "code": "INFLOW",
      "value": 36010501,
      "label": "Inflow"
    },
    {
      "code": "OUTFLOW",
      "value": 36010502,
      "label": "Outflow"
    }
  ]
}

Response Fields

NameTypeRequiredDescription
codestringRequiredEnum name identifier (e.g., "INFLOW")
valueintegerRequired8-digit numeric code for API usage
labelstringRequiredLocalized display name based on Accept-Language header

Error Responses

HTTP StatusCodeMessageDescription
500"5000""INTERNAL_SERVER_ERROR"Unexpected server error

Notes

  • The label field is localized; send Accept-Language: zh-CN for Chinese labels.

SlaunchX Internal Documentation