Skip to main content

Get Bills

Get Bills

Get account bills

Request frequency limit: 1/1s

Request URL

GET /deepcoin/account/bills

Request Parameters

Field NameRequiredTypeDescription
instTypetruestringProduct type
Spot: SPOT
Contract: SWAP
ccyfalsestringCurrency
typefalsestringAccount type
Fund income: 2
Fund expense: 3
Fund transfer: 4
Fee: 5
afterfalseintegerQuery content before this timestamp (in milliseconds)
beforefalseintegerQuery content before this timestamp (in milliseconds)
limitfalseintegerMaximum number of items per page is 100
Default: 100

Response Parameters

Field NameTypeDescription
billIdstringBill ID
ccystringAccount currency
clientIdstringCustom ID
balChgstringBalance change amount at account level
balstringBalance amount at account level
typestringBill type
1: "P/L"
2: "Income and Expenditure"
3: "System Transfer In"
4: "Withdraw to"
5: "Transaction Fee"
7: "Funding Fee"
8: "Settlement"
a: "Liquidation"
g: "Withheld Profits"
h: "Refunded withheld profit share"
i: "Copy trading profit share"
j: "Trial bonus issuance"
k: "Trial money recovery"
i: "Copy trading profit share"
j: "Trial bonus issuance"
k: "Trial money recovery"
tsstringBill creation time in Unix timestamp

Response Example

{
"code": "0",
"msg": "",
"data": [
{
"billId": "1000749090787153",
"ccy": "USDT",
"clientId": "",
"balChg": "-0.08911552",
"bal": "210523.96755368",
"type": "5",
"ts": "1736760623000"
},
{
"billId": "1000749090787141",
"ccy": "USDT",
"clientId": "",
"balChg": "-0.11841053",
"bal": "210527.00491822",
"type": "5",
"ts": "1736760503000"
}
]
}