Skip to main content

Search user withdrawal limit

  • GET /api/v3/wallet/withdraw/limit

Weight(IP): 5

Gets the 24-hour withdrawal limit for the specified asset for the authenticated user. Requires ACCOUNT_DETAILS permission.

Request parameters

ParameterTypeRequired?Description
coinStringYesAsset code, such as USDT.

Request example

curl "https://api-spot.weex.com/api/v3/wallet/withdraw/limit?coin=USDT" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1735632000000"

Response parameters

Field nameTypeDescription
coinStringAsset code.
withdrawLimitString24h withdrawal limit.
leftAmountStringRemaining 24h withdrawal quota.
kycFlagIntegerIdentity verification status.
vipLevelIntegerVIP level.

Response example

{
"coin": "USDT",
"withdrawLimit": "10000.000000000000000000",
"leftAmount": "10000.000000000000000000",
"kycFlag": 0,
"vipLevel": 0
}