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
| Parameter | Type | Required | Description |
|---|---|---|---|
| startTime | String | No | The record start time for the query, default value is seven days ago. Unix millisecond timestamp.e.g. 1690196141868. |
| endTime | String | No | The end time of the record for the query, default value is now. Unix millisecond timestamp, e.g. 1690196141868 |
| orderType | String | No | Order type classification, eg "Deposit" ,"Withdraw". |
| limit | String | No | Limit number default 10 max 200 |
| idLessThan | String | No | Requests the content on the page before this ID (older data), the value input should be the orderId of the corresponding interface. |
| requestTime | String | No | request Time Unix millisecond timestamp |
| receiveWindow | String | No | valid 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
| Parameter | Type | Description |
|---|---|---|
| userId | String | User id |
| orderId | String | Order ID |
| currency | String | Fiat currency coin name ,eg "TRY" |
| orderType | String | Order type classification, eg "Deposit" ,"Withdraw" |
| amount | String | Order amount |
| fee | String | Order fee |
| state | String | Order status, eg "INIT", "PROCESSING","PENDING","SUCCESSED ", "FAILED". |
| createTime | String | Creation time, Unix millisecond timestamp, e.g. 1690196141868 |