Skip to main content

Get account ledger (Transfer in and out)

Fetch user account asset transaction records (paginated)​

GET: /asset/bill/list

Content-Type: application/json

Parameters

ParameterTypemandatoryDefaultDescriptionRanges
pageNumintfalse1Page Number
pageSizeintfalse10Page Size
startTimeintfalseStart Time
endTimeintfalseEnd Time
symbolstringfalseToken Symbol
opCodeintfalseOperation Type1:Transfer 2:Trade 3:Transfer Fee 4:Trading Fee
Response
Example:
{
"code": 0, // Response code
"data": {
"items": [
{
"amount": "string", // AssetBillListItem
"chain": "string", //Chain Name
"contractAddress": "string", //Token Contract Address
"opCode": 0, // Operation code
"plusMinusSigns": "string", //plus or minus Sign
"symbol": "string", // Currency Symbol
"symbolImage": "string", // sybmol logo
"time": 0, // time
"token": "string" // token
}
],
"total": 0 // total quantity
},
"msg": "string", // response massage
"time": 0 // response time
}