Get Transferable Coins
Get list of coins that can be transferred between specified account types.
HTTP Request
GET /api/v1/spot/account/transfer-coin-info
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| fromType | string | Yes | Source account: "FUSD", "SPOT", "LENDING", "STAKING" |
| toType | string | Yes | Destination account: "FUSD", "SPOT", "LENDING", "STAKING" |
Request Example
curl -X GET "https://open-api.bydoxe.com/api/v1/spot/account/transfer-coin-info?fromType=SPOT&toType=FUSD" \
-H "ACCESS-KEY: your-api-key" \
-H "ACCESS-SIGN: your-signature" \
-H "ACCESS-PASSPHRASE: your-passphrase" \
-H "ACCESS-TIMESTAMP: 1659076670000"
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| code | string | Response code |
| msg | string | Response message |
| requestTime | number | Request timestamp in milliseconds |
| data | array | Array of transferable coin symbols |
Response Example
Success Response
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": ["USDT"]
}
Error Codes
| Code | Message |
|---|---|
| 40002 | Unauthorized |
| 40004 | Source and destination cannot be the same |
| 40034 | Transfer is not available for this coin |
| 43002 | Transfer between these wallet types is not supported |
| 50000 | System error |