Get Transfer Records
Get your internal transfer history between account types.
HTTP Request
GET /api/v1/spot/account/transfer-records
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| coin | string | Yes | Coin symbol |
| fromType | string | No | Source account type filter |
| startTime | string | No | Start time in milliseconds (Unix timestamp) |
| endTime | string | No | End time in milliseconds (Unix timestamp) |
| pageNum | string | No | Page number |
| limit | string | No | Number of records to return |
| idLessThan | string | No | Get records with ID less than this value |
Request Example
curl -X GET "https://open-api.bydoxe.com/api/v1/spot/account/transfer-records?coin=USDT&fromType=SPOT&limit=50" \
-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 transfer records |
| > transferId | string | Transfer ID |
| > coin | string | Coin symbol |
| > fromType | string | Source account type |
| > toType | string | Destination account type |
| > size | string | Transfer amount |
| > status | string | Transfer status |
| > ts | string | Timestamp in milliseconds |
Response Example
Success Response
{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"coin": "USDT",
"status": "Successful",
"toType": "FUSD",
"fromType": "SPOT",
"size": "100.00",
"ts": "1763459280833",
"transferId": "123456789"
}
]
}
Error Codes
| Code | Message |
|---|---|
| 40002 | Unauthorized |
| 40034 | coin does not exist |
| 50000 | System error |