获取充值记录
HTTP 请求
GET /assets/deposit-history
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
ccy | false | string | 币种名称 |
tx_id | false | string | 交易 ID |
status | false | string | 充值状态 |
page | false | int | 分页页数。默认页数为 1。 |
limit | false | int | 分页数量。默认数量为 10。 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
deposit_id | int | 充值记录 ID |
created_at | int | 充值创建时间 |
tx_id | string | 交易哈希 |
ccy | string | 币种名称 |
chain | string | 公链名称 |
deposit_method | string | 充值方法(链上充值或者站内转账) 链上充值(on_chain)。适用于从CoinEx站外充值 站内转账(inter_user)。适用于提现方和接收方均为CoinEx用户,无需提现手续费和链上确认,即时到账 |
amount | string | 充值数量。 低于最小充值数量的充值无法自动到账,需完成第二笔充值并确保两笔数量相加大于最小充值量 |
actual_amount | string | 实际充值量 |
to_address | string | 普通充值的转入地址,或站内转账的发送方邮箱 |
confirmations | int | 确认数。 一个区块就是一个确认,确认数越多,则表明该笔转账越安全;不同币种的入帐确认数和可提现确认数不同 |
status | string | 充值状态 |
tx_explorer_url | string | 交易的浏览器地址 |
to_addr_explorer_url | string | 转入的浏览器地址 |
remark | string | 充值备注 |
请求示例
GET
/assets/deposit-history?coin=CET&status=finish&page=1&limit=10
响应示例
{
"code": 0,
"data": [
{
"deposit_id": 14270229,
"created_at": 16372120221342,
"tx_id": "",
"ccy": "USDT",
"chain": "",
"deposit_method": "inter_user",
"amount": "200",
"actual_amount": "200",
"to_address": "XXXXXXXXXX",
"confirmations": 0,
"status": "finish",
"tx_explorer_url": "",
"to_addr_explorer_url": "",
"remark": ""
}
],
"message": "OK"
}