Ceffu OpenAPI Documentation Platform
  1. Orders
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
        GET
      • Place MirrorX Orders
        POST
  • 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. Orders

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

Designated Wallet : Not 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/v1/mirrorX/order/list?mirrorXLinkId=33&coinSymbol=USDT&orderType=10/20/30&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": [
            {
                "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"
}
🟢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 MirrorX Asset Positions
Next
Place MirrorX Orders