Skip to main content

Get Fiat Deposit/Withdraw History (USER_DATA)

API Description

Get Fiat Deposit/Withdraw History

HTTP Request

GET /sapi/v1/fiat/orders

Request Weight(UID)

90000

Request Parameters

NameTypeMandatoryDescription
transactionTypeSTRINGYES0-deposit,1-withdraw
beginTimeLONGNO
endTimeLONGNO
pageINTNOdefault 1
rowsINTNOdefault 100, max 500
recvWindowLONGNO
timestampLONGYES
  • If beginTime and endTime are not sent, the recent 30-day data will be returned.

Response Example

{
"code": "000000",
"message": "success",
"data": [
{
"orderNo":"7d76d611-0568-4f43-afb6-24cac7767365",
"fiatCurrency": "BRL",
"indicatedAmount": "10.00",
"amount": "10.00",
"totalFee": "0.00", // Trade fee
"method": "BankAccount", // Trade method
"status": "Expired", // Processing, Failed, Successful, Finished, Refunding, Refunded, Refund Failed, Order Partial credit Stopped
"createTime": 1626144956000,
"updateTime": 1626400907000
}
],
"total": 1,
"success": true
}