Check Transfer Records
Check Transfer Records
Descriptionâ
This interface is used to query Stock+ account deposit and withdrawal records.
HTTP Requestâ
- GET /api/v3/stockplus/asset/transfer-records
- Rate limit: 10 times/sec/UID
- Permission: Trade (management, read only)
Request
curl "https://api.bitget.com/api/v3/stockplus/asset/transfer-records" \
-H "ACCESS-KEY:your apiKey" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
Request Parametersâ
| Parameters | Type | Required | Description |
|---|---|---|---|
| transferId | String | No | Transfer ID |
| startTime | String | No | Start time, timestamp in milliseconds |
| endTime | String | No | End time, timestamp in milliseconds |
| limit | String | No | Number of entries per page |
| cursor | String | No | Cursor ID |
Response
{
"code": "00000",
"msg": "success",
"requestTime": 1740000000000,
"data": {
"transferId": "123456789",
"coin": "USDC",
"amount": "100.00",
"direction": "in",
"cursor": "abc123"
}
}
Response Parametersâ
| Parameters | Type | Description |
|---|---|---|
| transferId | String | Transfer ID |
| coin | String | Transfer currency Currently supports USDC and USD |
| amount | String | Transfer amount |
| direction | String | Transfer directionin - Deposit to Stock+ accountout - Withdraw from Stock+ account |
| cursor | String | Cursor ID |