curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/reserve/fund/transaction/list \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--header 'Timezone: UTC+8' \
--data '{
"start_time": "2026-09-01",
"end_time": "2026-09-30",
"type": "Deposit",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"transaction_no": "TR260605000000358089878975545344",
"type": "Consumption",
"amount_type": "add",
"symbol": "USD",
"amount": "3",
"reserve_amount": "519.3",
"ctime": "2026-06-05 15:11:17"
}]
}
}
账户相关
查询备付金余额明细
POST
/
open-api
/
v1
/
reserve
/
fund
/
transaction
/
list
curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/reserve/fund/transaction/list \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--header 'Timezone: UTC+8' \
--data '{
"start_time": "2026-09-01",
"end_time": "2026-09-30",
"type": "Deposit",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"transaction_no": "TR260605000000358089878975545344",
"type": "Consumption",
"amount_type": "add",
"symbol": "USD",
"amount": "3",
"reserve_amount": "519.3",
"ctime": "2026-06-05 15:11:17"
}]
}
}
查询商户备付金账户余额明细。单次查询时间跨度最多 31 天。
请求头
string
必填
apiKey(商户凭证,与 IP 白名单绑定)
string
必填
Unix 时间戳(毫秒),与服务端偏差须在 60 秒内,且不接受未来时间戳
string
必填
登录标识(除获取 Token 外必填)
string
默认值:"application/json"
固定为
application/jsonstring
默认值:"UTC+8"
时区,影响
start_time / end_time 的日界计算,默认 UTC+8请求体
string
必填
开始时间(
yyyy-MM-dd 或 yyyy-MM-dd HH:mm:ss)string
必填
结束时间(同上;间隔最多 31 天)
string
明细类型,见 常量表 - 余额明细类型。不传则查询全部类型
number
默认值:"0"
查询页码,从
0 开始number
默认值:"10"
每页数量,最大
100返回参数
number
响应状态码,
0 表示成功string
响应消息
object
curl --request POST \
--url https://sandbox-openplatform.keysecure.io/open-api/v1/reserve/fund/transaction/list \
--header 'Content-Type: application/json' \
--header 'Api-Key: your_api_key' \
--header 'Timestamp: 1716307200000' \
--header 'Access-Token: your_access_token' \
--header 'Timezone: UTC+8' \
--data '{
"start_time": "2026-09-01",
"end_time": "2026-09-30",
"type": "Deposit",
"page": 0,
"size": 10
}'
{
"code": 0,
"msg": "Success",
"data": {
"list": [{
"transaction_no": "TR260605000000358089878975545344",
"type": "Consumption",
"amount_type": "add",
"symbol": "USD",
"amount": "3",
"reserve_amount": "519.3",
"ctime": "2026-06-05 15:11:17"
}]
}
}
