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"
}]
}
}
Account
Query Reserve Fund Balance Details
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"
}]
}
}
Queries the merchant reserve fund account balance details. The query window is at most 31 days.
Request Headers
string
required
apiKey (merchant credential, bound to IP whitelist)
string
required
Unix timestamp in milliseconds. The deviation from the server time must be within 60 seconds, and future timestamps are not accepted.
string
required
Login token (required for all interfaces except Get Token).
string
default:"application/json"
Fixed to
application/jsonstring
default:"UTC+8"
Timezone, affects the day boundary calculation for
start_time / end_time. Defaults to UTC+8.Request Body
string
required
Start time (
yyyy-MM-dd or yyyy-MM-dd HH:mm:ss).string
required
End time (same format as above; interval ≤ 31 days).
string
Detail type. See Constants - Balance Detail Type. Omit to query all types.
number
default:"0"
Query page number, starting from
0.number
default:"10"
Number of records per page (max 100).
Response Parameters
number
Response status code.
0 indicates success.string
Response message.
object
Response data.
Show data
Show data
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"
}]
}
}
