Ceffu OpenAPI Documentation Platform
  1. Wallet Endpoints
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 Deposit History
      • Get Deposit Detail
    • 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
      • Get Transfer History with Exchange
        GET
      • Transfer with Exchange
        POST
      • Get Withdrawal History
        GET
      • Get Withdrawal Details
        GET
      • Withdrawal
        POST
      • Get Sub-Wallet List (V1)
        GET
  1. Wallet Endpoints

Get Transfer History with Exchange

GET
/open-api/v1/wallet/transfer/exchange/history
This method allows to get all transfer transactions with an Exchange by the requested wallet ID, coinSymbol and network.
API Key permission group : Enable Enquiry

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/v1/wallet/transfer/exchange/history?walletId=1325589336357780500&startTime=1640995200000&endTime=1640995200000&pageLimit=25&pageNo=1&timestamp=1640995200000' \
--header 'open-apikey;' \
--header 'signature;'

Responses

🟢200The operation succeeded
application/json
Body

Example
{
    "data": {
        "data": [
            {
                "orderViewId": "23886485504848345881440001",
                "direction": 10,
                "walletId": 1547166462125822000,
                "createTime": 1684840558000,
                "exchangeCode": 10,
                "exchangeUserId": "3047355052109255937",
                "coinSymbol": "TRX",
                "amount": "1",
                "status": 30,
                "requestId": null
            },
            {
                "orderViewId": "23886453984748456594560002",
                "direction": 10,
                "walletId": 1547166462125822000,
                "createTime": 1684748936000,
                "exchangeCode": 10,
                "exchangeUserId": "3047355052109255937",
                "coinSymbol": "SHIB",
                "amount": "0.01",
                "status": 30,
                "requestId": null
            },
            {
                "orderViewId": "23886435067757029452800001",
                "direction": 10,
                "walletId": 1547166462125822000,
                "createTime": 1675776054000,
                "exchangeCode": 10,
                "exchangeUserId": "3047355052109255937",
                "coinSymbol": "SHIB",
                "amount": "5",
                "status": 30,
                "requestId": null
            }
        ],
        "totalPage": 1,
        "pageNo": 1,
        "pageLimit": 25
    },
    "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 Transfer Detail with Exchange
Next
Transfer with Exchange