Skip to main content
Version: V2

Internal Withdrawal

HTTP request Internal Withdrawal

  • GET /api/v2/rebate/affiliate/internalWithdrawal

Rate limit: 10 requests/second

Request parameters

ParameterParameter TypeRequiredDescription
toUserIdLongYesTransfer-in user ID
coinStringYesCurrency type (USDT, BTC)
amountStringYesTransfer amount (Up to 6 decimal places)
fromAccountTypeStringYesSelected withdrawal account type (SPOT: spot wallet, SPOT_V2: spot pro wallet, FUND: fund wallet)
toAccountTypeStringYesSelected receiving account type (SPOT: spot wallet, SPOT_V2: spot pro wallet, FUND: fund wallet)

Request example

curl -X POST "https://api-spot.weex.com/api/v2/rebate/affiliate/internalWithdrawal" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:zh-CN" \
-H "Content-Type: application/json" \
-d '{
"toUserId": "11111111",
"coin": "USDT",
"amount": "1",
"fromAccountType": "SPOT",
"toAccountType": "SPOT"
}'

Response parameters

Field NameTypeDescription
idStringWithdrawal ID

Response example

{
"code": "200",
"id": "1295851890224222208",
"timestamp": 1744681087121
}