Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
  • Webhook
  • Archive
    • Mirror Endpoints
      • Get Mirror Linked Binance UID ListGET
      • MIrror Assets ApplicationPOST
      • MIrror Assets SettlementPOST
      • Get Mirror Operation RecordsGET
      • Get Mirrored Asset PositionsGET
      • Get Mirrored Asset SummaryGET
    • 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
  2. Mirror Endpoints

Get Mirror Operation Records

GET/open-api/v1/mirror/records/list

This method allows to get Mirror operation records of the requested Binance UID, wallet ID, coinSymbol, network and timeframe.
Either binanceUID or walletIdStr must be provided.

API Key permission group : Enable Enquiry

Request

Query Params
binanceUID
string 
optional

Binance UID

Example:
1000001201741
walletIdStr
integer 
optional

Wallet ID

Example:
1450411129215791000
coinSymbol
string 
optional

Coin symbol (in capital letters)

Example:
USDT
network
string 
optional

Network symbol All networks if not specific

Example:
ETH
startTime
integer 
required

Start time (timestamp in milliseconds)

Example:
1640995200000
endTime
integer 
required

End time (timestamp in milliseconds)

Example:
1640995200000
operationType
integer 
optional

Binance Mirror operation type :1: Borrow2: Settle from Custody3: Settle from Binance

Example:
1
status
integer 
optional

Status: 20: In Progress 30: Success 99: Failed

Example:
10
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

API key

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 (OrderRecordVO) {9}] 
required

Data list

amount
string 
required

Amount of this Binance Mirror Operation

Example:
10000
binanceUID
string 
required

Binance UID

Example:
1000001201741
coinSymbol
string 
required

Coin symbol

Example:
USDT
network
string 
required

Network symbol

Example:
ETH
operationTime
integer <int64>
optional

Binance Mirror Operation Time

operationType
integer <int32>
required

Binance Mirror Operation Type :

1: Borrow

2: Settle from Custody

3: Settle from Binance

Example:
1
recordId
string 
required

Operation Record Unique Identifier

status
integer <int32>
optional

Status:

20: In Progress

30: Success

99: Failed

walletIdStr
string 
required

Wallet Identifier

Example:
1450411129215791000
pageLimit
integer <int32>
required

Page limit

pageNo
integer <int32>
required

Page number

totalPage
integer <int32>
required

Total page

Example
{
  "pageNo": 1,
  "totalPage": 1,
  "pageLimit": 20,
  "data": [
    {
      "recordId": "1000001201741",
      "binanceUID": "1000001201741",
      "walletIdStr": "1450411129215791105",
      "operationType": 1,
      "amount": "13",
      "coinSymbol": "USDT",
      "network": "ETH",
      "status": 10,
      "operationTime": 1643242410000
    }
  ]
}
Last modified: 2 years ago