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 LinkId List

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

This method allows you to get the list of MirrorX-linked Binance 3rd-Party Custodian UIDs (3PCUIDs). The Binance 3PCUIDs must be applied through the Ceffu Web by a creator role.

API Key permission group : Enable Enquiry

Request

Query Params
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 (MirrorXLinkId) {6}] 
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": [
      {
        "mirrorXLinkId": "3289",
        "binanceUID": "1000197639537",
        "walletIdStr": "374670159018962944",
        "label": "",
        "status": 1,
        "createDate": "1715090402000"
      },
      {
        "mirrorXLinkId": "3288",
        "binanceUID": "1000197635609",
        "walletIdStr": "370387818289426432",
        "label": "",
        "status": 1,
        "createDate": "1715069632000"
      },
      {
        "mirrorXLinkId": "3287",
        "binanceUID": "1000197630853",
        "walletIdStr": "374668557117796352",
        "label": "",
        "status": 1,
        "createDate": "1715064362000"
      },
      {
        "mirrorXLinkId": "3282",
        "binanceUID": "1000197630852",
        "walletIdStr": "374666363953983488",
        "label": "",
        "status": 1,
        "createDate": "1715055850000"
      },
      {
        "mirrorXLinkId": "3281",
        "binanceUID": "1000197630850",
        "walletIdStr": "374666954746867712",
        "label": "",
        "status": 2,
        "createDate": "1715055817000"
      }
    ],
    "totalPage": 1,
    "pageNo": 1,
    "pageLimit": 25
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 9 months ago