Skip to main content

Get Fiat Deposit&Withdraw History Orders

Frequency limit: 20 times/1s (UID)

Description

Get Fiat Deposit&Withdraw History Orders

HTTP Request

  • GET /api/v2/fiat/history-dw-orders
curl "https://api.cointr.com/api/v2/fiat/history-dw-orders?endTime=174963570100&idLessThan=1136197148501618688&limit=10&orderType=Deposit&startTime=1747495476000" \
-H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*" \
-H "ACCESS-PASSPHRASE:*" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

request parameter

ParameterTypeRequiredDescription
startTimeStringNoThe record start time for the query, default value is seven days ago. Unix millisecond timestamp.e.g. 1690196141868.
endTimeStringNoThe end time of the record for the query, default value is now. Unix millisecond timestamp, e.g. 1690196141868
orderTypeStringNoOrder type classification, eg "Deposit" ,"Withdraw".
limitStringNoLimit number default 10 max 200
idLessThanStringNoRequests the content on the page before this ID (older data), the value input should be the orderId of the corresponding interface.
requestTimeStringNorequest Time Unix millisecond timestamp
receiveWindowStringNovalid window period Unix millisecond timestamp Unix millisecond timestamp
{
"code": "00000",
"msg": "success",
"requestTime": 1750055923070,
"data": [
{
"userId": "1047180517364",
"orderId": "1310858952417959936",
"currency": "TRY",
"orderType": "Deposit",
"amount": "1",
"fee": "0",
"state": "PENDING",
"createTime": "1748259049515"
}
]
}

Response Parameter

ParameterTypeDescription
userIdStringUser id
orderIdStringOrder ID
currencyStringFiat currency coin name ,eg "TRY"
orderTypeStringOrder type classification, eg "Deposit" ,"Withdraw"
amountStringOrder amount
feeStringOrder fee
stateStringOrder status, eg "INIT", "PROCESSING","PENDING","SUCCESSED ", "FAILED".
createTimeStringCreation time, Unix millisecond timestamp, e.g. 1690196141868