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

Check MirrorX Available amount

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

This method allows you to check MirrorX available amount for delegation/undelegation order.

API Key permission group : Enable Enquiry

Request

Query Params
mirrorXLinkId
string 
required

Unique identifier of MirrorX linkage

Example:
12936129221
coinSymbol
string 
required

Coin symbol (in capital letters)

Example:
USDT
orderType
integer 
required

MirrorX Order Type : 10: delegate funds to Binance Third Party Custodian UIDs 20: undelegate funds from Binance Third Party Custodian UIDs

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

coinSymbol
string 
required
maxAvailableAmount
string 
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": {
    "coinSymbol": "USDT",
    "maxAvailableAmount": "0"
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 3 months ago