Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
    • Get Prime Wallet supported coins listGET
    • Get Qualified Wallet supported coins listGET
    • Get Cosign Wallet supported coins listGET
    • Get Wallet ListGET
    • Get Asset DetailsGET
    • Get Wallet Asset SummaryGET
    • Get Deposit AddressGET
    • Get Deposit HistoryGET
    • Get Deposit Detail (V2)GET
    • Get Withdrawal Fee (estimated)GET
    • Get Withdrawal History (V2)GET
    • Get Withdrawal Details (V2)GET
    • Create WalletPOST
    • Update Wallet DetailsPOST
    • Withdrawal (V2)POST
    • Transaction History ListPOST
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
logoPowered by Apifox
  1. Wallet Endpoints

Transaction History List

POST/open-api/v1/wallet/transaction/history

This method allows you to get transaction history which is a concise record of all your transactions.

API Key permission group : Transaction History

Request

Header Params
open-apikey
string 
required

API key

signature
string 
required

Signature of the request

Body Params application/json
startDate
string 
required

Date in YYYYMMDD format

endDate
string 
required

Date in YYYYMMDD format

symbols
array[string]
optional

Array of coin symbol

walletIds
array[string]
optional

Array of wallet id

bizTypes
array[integer]
optional

Array of business type

Allowed values:
1015311031203130
walletType
enum<integer> 
required

Wallet type

Allowed values:
1011122021
txId
string 
optional

Transaction id

pageLimit
integer 
optional

Page limit, min: 1, max: 100

pageNo
integer 
optional

Page number, min: 1

networks
array[string]
optional

Array of network symbol

timestamp
number 
required

Current timestamp in millisecond

Example
{
  "endDate": 20240401,
  "pageLimit": 25,
  "pageNo": 1,
  "startDate": 20240301,
  "timestamp": 1640995200000,
  "bizTypes": [
    15
  ],
  "walletType": 20
}

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
data
object  | null 
optional

response data, maybe null

data
array[object (AssetLogVo) {8}] 
required
totalPage
integer 
required
pageNo
integer 
required
pageLimit
integer 
required
code
string 
required

'000000' indicates success, while any others indicate failure.

message
string 
required

When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.

Example
{
  "data": {
    "data": [
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "BSC",
        "symbol": "BNB",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.01100000",
        "ts": 1711702341000
      },
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "SOL",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.01300000",
        "ts": 1711548843000
      },
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "SOL",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.02000000",
        "ts": 1711548526000
      },
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "SOL",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.01100000",
        "ts": 1711548332000
      },
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "SOL",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.10000000",
        "ts": 1711548257000
      },
      {
        "walletId": "1642895641310679041",
        "walletName": "PPPPPPwallet",
        "network": "BSC",
        "symbol": "BNB",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.01200000",
        "ts": 1711548191000
      },
      {
        "walletId": "1572553622146764801",
        "walletName": "common PWwallet",
        "network": "-",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.02800000",
        "ts": 1711533841000
      },
      {
        "walletId": "1572553622146764801",
        "walletName": "common PWwallet",
        "network": "-",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.02800000",
        "ts": 1711533241000
      },
      {
        "walletId": "1572553622146764801",
        "walletName": "common PWwallet",
        "network": "-",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.02800000",
        "ts": 1711532402000
      },
      {
        "walletId": "1572553622146764801",
        "walletName": "common PWwallet",
        "network": "-",
        "symbol": "SOL",
        "txId": "",
        "transactionType": "Receive",
        "amount": "0.02800000",
        "ts": 1711531442000
      }
    ],
    "totalPage": 2,
    "pageNo": 1,
    "pageLimit": 25
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 9 days ago