Skip to main content
Version: V3

Get Funding Account Bills (USER_DATA)

  • POST /api/v3/account/fundingBills

Weight(IP): 5, Weight(UID): 5

Request parameters

ParameterTypeRequired?Description
coinIdIntegerNoAsset ID filter.
bizTypeStringNoBusiness type filter.
startTimeLongNoStart time (ms).
endTimeLongNoEnd time (ms).
pageIndexIntegerNoPage number (default 1).
pageSizeIntegerNoPage size (default 10, maximum 100).

Request example

curl -X POST "https://api-spot.weex.com/api/v3/account/fundingBills" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "Content-Type: application/json" \
-d '{
"coinId": 2,
"pageSize": 20
}'

Response parameters

FieldTypeDescription
totalLongTotal number of records.
pageSizeIntegerPage size.
pagesIntegerTotal number of pages.
pageIntegerCurrent page number.
hasNextPageBooleanWhether another page is available.
itemsArray<Object>List of bill entries (see Get Spot Account Bills for field details).

Response example

{
"total": 12,
"pageSize": 20,
"pages": 1,
"page": 1,
"hasNextPage": false,
"items": [
{
"billId": "701234567890123456",
"coinId": 2,
"coinName": "USDT",
"bizType": "transfer_in",
"deltaAmount": "100.00000000",
"afterAmount": "910.00000000",
"fees": "0",
"cTime": "1764505800123"
}
]
}