Ceffu OpenAPI Documentation Platform
  • ChangeLog
  • Getting Started
  • System Endpoints
  • Wallet Endpoints
  • Sub-Wallet Endpoints
  • MirrorX Endpoints
    • Get MirrorX LinkId ListGET
    • Get MirrorX OrdersGET
    • Check MirrorX Available amountGET
    • Get MirrorX Asset PositionsGET
    • Place MirrorX OrdersPOST
  • Webhook
  • Archive
logoPowered by Apifox
  1. MirrorX Endpoints

Get MirrorX Orders

GET/open-api/v1/mirrorX/order/list

This method allows you to get mirrorX orders of the requested mirrorXLinkId, coinSymbol, orderType and timeframe.

Notes:

  • Please notice the default startTime and endTime to make sure that time interval is within 0-30 days.
  • If both startTime and endTime are sent, time between startTime and endTime must be less than 30 days.

API Key permission group : Enable Enquiry

Request

Query Params
mirrorXLinkId
string 
required

Unique identifier of MirrorX linkage

Example:
33
coinSymbol
string 
optional

Coin symbol (in capital letters)

Example:
USDT
orderType
integer 
optional

MirrorX Order Type(10: “delegation”, 20: “undelegation”, 30: “settlement”)

Example:
10/20/30
startTime
integer 
required

Start time (timestamp in milliseconds)

Example:
1640995200000
endTime
integer 
required

End time (timestamp in milliseconds)

Example:
1640995200000
pageLimit
integer 
required

Page limit, min: 1, max: 500

Example:
25
pageNo
integer 
required

Page number, min: 1

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

response data, maybe null

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

response code, '000000' when successed, others represent there some error occured

message
string 
required

detail of response, when code != '000000', it's detail of error

Example
{
  "data": {
    "data": [
      {
        "mirrorXLinkId": "3289",
        "binanceUID": "1000197639537",
        "walletIdStr": "374670159018962944",
        "orderType": 10,
        "amount": "100",
        "coinSymbol": "BNB",
        "status": 30,
        "orderTime": "1715090766000",
        "orderViewId": "24073666709051072428160003"
      }
    ],
    "totalPage": 1,
    "pageNo": 1,
    "pageLimit": 25
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 8 months ago