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
| Parameter | Type | Required? | Description |
|---|---|---|---|
| coin | String | Yes | Asset 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 name | Type | Description |
|---|---|---|
| coin | String | Asset code. |
| withdrawLimit | String | 24h withdrawal limit. |
| leftAmount | String | Remaining 24h withdrawal quota. |
| kycFlag | Integer | Identity verification status. |
| vipLevel | Integer | VIP level. |
Response example
{
"coin": "USDT",
"withdrawLimit": "10000.000000000000000000",
"leftAmount": "10000.000000000000000000",
"kycFlag": 0,
"vipLevel": 0
}