获取充币记录
限速规则 10次/1s (UID)
描述
获取充币记录
HTTP请求
- GET /api/v2/spot/wallet/deposit-records
请求示例
curl "https://api.bitget.com/api/v2/spot/wallet/deposit-records?coin=USDT&startTime=1659036670000&endTime=1659076670000&limit=20" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"
请求参数
参数名 | 参数类型 | 是否必须 | 描述 |
---|---|---|---|
coin | String | 否 | 币种名称,如USDT |
orderId | String | 否 | 订单ID。当传入orderId时直接查询此订单,忽略其他入参 |
startTime | String | 是 | 查询的记录起始时间。Unix毫秒时间戳,例如1690196141868 |
endTime | String | 是 | 查询的记录结束时间。Unix毫秒时间戳,例如1690196141868 |
idLessThan | String | 否 | 游标ID 用于翻页,首次查询不传,查询第二页及后面的数据时,取上一次查询返回的最小orderId,结果会返回小于该值的数据;可以缩短查询响应时间 |
limit | String | 否 | 每页条目数 默认值为20,最大值为100 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1654507973411,
"data": [
{
"orderId": "912533114861326336",
"tradeId": "912533114861326336",
"coin": "USDT",
"type": "deposit",
"size": "10.00000000",
"status": "success",
"toAddress": "0x514910771af9ca656af840dff83e8264ecf986ca",
"dest": "on_chain",
"chain": "erc20",
"fromAddress": "0x514910771af9ca656af840dff83e8264ecf986ca",
"cTime": "1653290769222",
"uTime": "1653290769222"
}
]
}
返回参数
返回字段 | 参数类型 | 字段说明 |
---|---|---|
orderId | String | 订单ID |
tradeId | String | 交易ID |
coin | String | 币种名称 |
type | String | 交易类型 |
dest | String | 充值类型 on_chain 链上 fast 快速 internal 内部 |
size | String | 数量 |
status | String | 充币状态 pending 确认中 fail 失败 success 成功 |
fromAddress | String | 充币发起人 |
toAddress | String | 充币接收人 |
fee | String | 手续费 |
chain | String | 提币网络 |
confirm | String | 确认区块数 |
cTime | String | 创建时间 |
uTime | String | 修改时间 |