Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
    • Mirror Endpoints
    • Get Transfer Detail with ExchangeGET
    • Get Transfer History with ExchangeGET
    • Transfer with ExchangePOST
    • Get Withdrawal HistoryGET
    • WithdrawalPOST
    • Get Withdrawal DetailsGET
    • Get Sub-Wallet List (V1)GET
logoPowered by Apifox
  1. Archive

Get Withdrawal History

GET/open-api/v1/wallet/withdrawal/history

This method allows to get all transactions of the requested wallet ID, coinSymbol and network.

API Key permission group : Enable Enquiry

Request

Query Params
walletId
integer 
required

wallet id

Example:
1325589336357780500
network
string 
optional

network

Example:
ETH
coinSymbol
string 
optional

coin symbol (in capital letters)

Example:
USDT
status
integer 
optional

Status :
10: Pending
20: Processing
30: Send success
40: Confirmed
99: Failed

Example:
10
startTime
integer 
required

start time(timestamp in milliseconds)

Example:
1640995200000
endTime
integer 
required

end time(timestamp in milliseconds)

Example:
1640995200000
pageLimit
integer 
required

page limit

Example:
25
pageNo
integer 
required

page no

Example:
1
timestamp
integer 
required

Current Timestamp in millisecond

Example:
1640995200000
Header Params
open-apikey
string 
required

OpenAPI key string

signature
string 
required

Signature of the request

Request samples

Responses

The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
unified pageable result
data
array[object (Transaction) {18}] 
optional
amount
string 
optional

Amount

Example:
10.2845
coinSymbol
string 
optional

Coin symbol

Example:
ETH
confirmedBlockCount
integer <int32>
optional

Confirmed block count

Example:
30
unlockConfirm
integer 
optional

unlockConfirm

maxConfirmBlock
integer 
optional

maxConfirmBlock

direction
integer <int32>
optional

Direction,
10: deposit
20: withdrawal

Example:
10
feeAmount
string 
optional

Fee amount

Example:
0.00041
feeSymbol
string 
optional

Fee symbol

Example:
ETH
fromAddress
string 
optional

From address

Example:
0x25adb98b6dacd3a8bfeec5a321daa879b401eab3
memo
string 
optional

Memo

Example:
82486739
network
string 
optional

Network symbol

Example:
USDT
orderViewId
string 
optional

Order view id (Only Applicable to Withdrawal request)

Example:
2.205209432454564e+25
status
integer <int32>
optional

10: Pending 20: Processing 30: Send success 40: Confirmed 99: Failed

toAddress
string 
optional

To address

Example:
0x25adb98b6dacd3a8bfeec5a321daa879b401eab3
transferType
integer <int32>
optional

Transfer type,10: on chain transfer
20: internal transfer

Example:
10
txId
string 
optional

Transaction id (Only Applicable to on-chain transfer)

Example:
0xa6f245a04caa71ab153e7201b511a3857fbc2304874e386977163f3850bde12
txTime
integer <int64>
optional

Transaction time

Example:
1640995200000
walletId
integer <int64>
optional

Wallet identity

Example:
201108087331
pageLimit
integer <int32>
Page limit
optional
pageNo
integer <int32>
Page no
optional
totalPage
integer <int32>
Total page number
optional
Example
{
  "data": [
    {
      "amount": 10.2845,
      "coinSymbol": "ETH",
      "confirmedBlockCount": 30,
      "unlockConfirm": 0,
      "maxConfirmBlock": 0,
      "direction": 10,
      "feeAmount": 0.00041,
      "feeSymbol": "ETH",
      "fromAddress": "0x25adb98b6dacd3a8bfeec5a321daa879b401eab3",
      "memo": 82486739,
      "network": "USDT",
      "orderViewId": 2.205209432454564e+25,
      "status": 0,
      "toAddress": "0x25adb98b6dacd3a8bfeec5a321daa879b401eab3",
      "transferType": 10,
      "txId": "0xa6f245a04caa71ab153e7201b511a3857fbc2304874e386977163f3850bde12",
      "txTime": 1640995200000,
      "walletId": 201108087331
    }
  ],
  "pageLimit": 0,
  "pageNo": 0,
  "totalPage": 0
}
Last modified: a year ago