Skip to main content

Get Deposit Record

Info
  • This endpoint requires signature. For specific signature rules, please refer to Authentication
  • This endpoint will trigger rate limit. For specific rules, please refer to Rate Limit.

HTTP request

GET /assets/deposit-history

Request parameters

Parameter NameRequiredTypeNotes
ccyfalsestringCurrency name
tx_idfalsestringTxID
statusfalsestringDeposit status
pagefalseintNumber of pagination. Default is 1.
limitfalseintNumber in each page. Default is 10.

Return parameters

Parameter NameTypeNotes
deposit_idintDeposit record ID
created_atintDeposit creation time
tx_idstringTx hash
ccystringCurrency name
chainstringChain name
deposit_methodstringDeposit methods (On-chain or inter-user transfer)
On-chain deposit (on_chain).Applicable to deposits from outside CoinEx
Inter-user transfer (inter_user)。Applicable to transfers between CoinEx users, no withdrawal fee or on-chain confirmation required, instant arrival.
amountstringDeposit amount.
Deposits lower than minimum deposit amount cannot be automatically credited, and a second deposit is needed. Please make sure the sum of the two deposits is higher than the minimum deposit requirement.
actual_amountstringActual deposit amount
to_addressstringThe arrival address for normal deposits, or the sender's email address for inter-user transfers
confirmationsintNumber of confirmations.
Each block stands for a confirmation. The more confirmations, the safer the transfer, and the number of confirmations for deposit arrival and withdrawal unlock varies for different assets.
statusstringDeposit status
tx_explorer_urlstringExplorer link of the transaction
to_addr_explorer_urlstringExplorer link of the incoming transfer
remarkstringDeposit note

Request example

GET /assets/deposit-history?coin=CET&status=finish&page=1&limit=10

Response example

{
"code": 0,
"data": [
{
"deposit_id": 14270229,
"created_at": 16372120221342,
"tx_id": "",
"ccy": "USDT",
"chain": "",
"deposit_method": "inter_user",
"amount": "200",
"actual_amount": "200",
"to_address": "XXXXXXXXXX",
"confirmations": 0,
"status": "finish",
"tx_explorer_url": "",
"to_addr_explorer_url": "",
"remark": ""
}
],
"message": "OK"
}