Transfer fund
Description
Transfer fund to user' speicifc account. e.g. Futures account
HTTP Request
- POST /fapi/v1/account/transfer
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| transferType | String | Yes | Tranfer fund type. wallet_to_contract: Exchange account to Futures account, contract_to_wallet: Futures account to Exchange account, lever_to_contract: Leverage account to Futures account, contract_to_lever: Futures account to Leverage account |
| coinSymbol | String | Yes | Transfer coin |
| amount | String | Yes | Amount |
| unionId | Integer | Yes | Request unique ID |
Request Example
http
curl -X POST 'https://futuresopenapi.100ex.com/fapi/v1/account/transfer' \
-H "X-CH-TS:1736156253259" \
-H "X-CH-SIGN:*" \
-H "X-CH-APIKEY:********" \
-H "Content-Type: application/json" \
-d '{"transferType": "wallet_to_contract", "coinSymbol": "USDT", "amount": "50", "unionId": 123456}'Response Parameters
| Parameter | Type | Description |
|---|---|---|
Response Example
json
{
"code": "0",
"msg": "suc",
"data": null,
"succ": true
}