Skip to content

Transfer

Endpoint: /v1/wallet/transfer

Request

Method: POST

Example

Bash
curl -X POST "https://oapi.websea.com/v1/wallet/transfer" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Token: YOUR_TOKEN" \
  -H "Nonce: 1700000000_abcd1" \
  -H "Signature: GENERATED_SIGNATURE" \
  -d "amount=0.5" \
  -d "transType=SPOT_FUTURE" \
  -d "asset=USDT"

Request Parameters

Parameter Required Type Example Description
amount Yes String 0.5 Transfer amount
transType Yes String SPOT_FUTURE Transfer type
SPOT_FUTURE: Spot to Futures
FUTURE_SPOT: Futures to Spot
asset No String USDT Asset symbol. Required for cross-margin or isolated margin transfers

Response Parameters

Parameter Required Type Example Description
errno Yes int 0 Status code
errmsg Yes String success Status message

Response Example

JSON
{
  "errmsg": "success",
  "errno": 0
}