Ceffu OpenAPI Documentation Platform
  1. Deposits
Ceffu OpenAPI Documentation Platform
  • Changes
    • Upcoming Changes
    • Change log
  • Development Tools and Resource
    • Overview
      • Welcome to Ceffu OpenAPI
    • Quickstart
      • Initial Setup
      • Using the Ceffu SDK
    • Authentication
    • Rate limit
    • Error Codes
    • Webhook Introduction
  • Concepts
    • Ceffu Custody
  • System Endpoints
    • Get System status
  • Wallet Management
    • Ceffu Supported Asset Endpoint
      • Get Prime Wallet supported coins list
      • Get Qualified Wallet supported coins list
      • Get Cosign Wallet supported coins list
    • Qualified Wallets and Prime Wallets Endpoint
      • Create Wallet
      • Update Wallet Details
      • Get Wallet List
      • Get Asset Details
      • Get Wallet Asset Summary
    • Deposits
      • Get Deposit Address
        GET
      • Get Deposit History
        GET
      • Get Deposit Detail
        GET
    • Withdrawals
      • Withdrawal
      • Get Withdrawal Fee (estimated)
      • Get Withdrawal History
      • Get Withdrawal Details
    • Whitelisted Addresses
      • Get Whitelisted Address List
      • Get Correspondent’s Options
      • Add/Edit Whitelisted Address
    • Transactions
      • Transaction History List
  • PW Sub Wallets
    • Sub-Wallet Management
      • Create Sub-Wallet
      • Update Sub-Wallet Details
      • Get Sub-Wallet List
      • Get Sub-Wallet Asset Details
      • Get Sub-Wallet Asset Summary
    • Sub-Wallet Deposits
      • Get Sub-Wallet Deposit Address
      • Get Deposit Address List under Prime Wallet
      • Get Deposit History under Sub-Wallet
      • Get Sub-Wallet Deposit History By Prime Wallet
    • Internal Transfers
      • Transfer between Sub Wallet and Prime Wallet
      • Get Transfer History between Sub-Wallet and Prime Wallet
    • Transactions
      • Get Transaction Details of Prime Wallet Internal Transfer
  • MirrorX
    • Link & Account
      • Get MirrorX LinkId List
    • Balances & Positions
      • Check MirrorX Available amount
      • Get MirrorX Asset Positions
    • Orders
      • Get MirrorX Orders
      • Place MirrorX Orders
  • Webhooks & Notifications
    • Resend webhook notifications
  • Archive
    • Mirror Endpoints
      • Get Mirror Linked Binance UID List
      • MIrror Assets Application
      • MIrror Assets Settlement
      • Get Mirror Operation Records
      • Get Mirrored Asset Positions
      • Get Mirrored Asset Summary
    • Wallet Endpoints
      • Get Transfer Detail with Exchange
      • Get Transfer History with Exchange
      • Transfer with Exchange
      • Get Withdrawal History
      • Get Withdrawal Details
      • Withdrawal
      • Get Sub-Wallet List (V1)
  1. Deposits

Get Deposit Detail

GET
/open-api/v2/wallet/deposit/detail

This method allows you to get the deposit details of the requested transaction ID.

  • either txId or orderViewId shall be passed in params

API Key permission group : Enable Enquiry

Designated Wallet : Impacted

Request

Query Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/open-api/v2/wallet/deposit/detail?timestamp=1640995200000&txId=2B2F4DA3D3838D56E90D06D1879B0ABFABD0D45FC4CFEFC6560289E6572F019&orderViewId=20372107512956096512&memo=12314&address=inj15jy9vzmyy63ql9y6dvned2kdat2994x5f4ldu4' \
--header 'open-apikey;' \
--header 'signature;'

Responses

🟢200The operation succeeded
application/json
Body

Example
{
    "data": [
        {
            "orderViewId": "10369165164303552512",
            "txId": "0x1c5b79cfe30b978b053b7bc26f4716378667d49c7edf6c46ae421d256e29c970",
            "transferType": 10,
            "direction": 10,
            "fromAddress": "0xf637e2d5dc3c33655a906d97f6c79d1e33bcfc34",
            "toAddress": "0xc8dAe5eb08fe1981D212cFc3744b237e72a99878",
            "network": "BSC",
            "coinSymbol": "BNB",
            "amount": "1.00000000000000000000",
            "feeSymbol": "BNB",
            "feeAmount": null,
            "status": 40,
            "confirmedBlockCount": 15,
            "unlockConfirm": 15,
            "maxConfirmBlock": 15,
            "currentBlock": 15,
            "memo": null,
            "txTime": 1713146204000,
            "walletId": 327282886560800800,
            "requestId": null
        }
    ],
    "code": "000000",
    "message": "Success"
}
🟢200Business error
🟠400The client request is invalid
🟠401Authentication failed (e.g., invalid token specified by the Authorization header)
🟠403Authentication failed, but the operation is not allowed
🟠404Requested resource does not exist
🟠429Client request rate exceeded the limit
🔴500System error
Previous
Get Deposit History
Next
Withdrawal