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 Linked Binance UID List

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

This method enables querying the list of Mirror-linked Binance UIDs (BUIDs). The Mirror-linked BUIDs must be applied through the Ceffu Web by a creator role.

API Key permission group : Enable Enquiry

Request

Query Params
timestamp
string 
required

Current Timestamp in millisecond

Example:
0
pageLimit
string 
optional
Example:
0
pageNo
string 
optional
Example:
0
Header Params
open-apikey
string 
required

OpenAPI key string

signature
string 
required

Signature of the request

Request samples

Responses

成功(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
detail of response, when code != '000000', it's detail of error
data
object (PageResult«MirrorLinkIdVo») 
optional
data
array[object (MirrorLinkIdVo) {6}] 
required

Data object

pageLimit
integer 
required

Page limit

pageNo
integer 
required

Page number

totalPage
integer 
required

Total page

code
string 
optional
message
string 
optional
Example
{
  "data": {
    "data": [
      {
        "walletIdStr": "",
        "binanceUID": "",
        "mirrorLinkId": "",
        "label": "",
        "status": 0,
        "createDate": 0
      }
    ],
    "totalPage": 0,
    "pageNo": 0,
    "pageLimit": 0
  },
  "code": "",
  "message": ""
}
Last modified: 2 years ago