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 Mirrored Asset Summary

GET/open-api/v1/mirror/position/summary

This method allows to get mirrored asset summary

Notes: Either walletIdStr must be provided.

Request

Query Params
walletIdStr
string 
required

Wallet ID in string

Example:
12936129221
timestamp
integer 
required

Current timestamp in millisecond

Example:
1640995200000
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
data
object (MirrorPositionSummaryVo) 
optional
walletIdStr
string 
optional
totalAmountInBTC
string 
optional
data
array[object (mirrorSummaryObject) {2}] 
optional
code
string 
optional
message
string 
optional
Example
{
    "data": {
        "walletIdStr": "",
        "totalAmountInBTC": "",
        "data": [
            {
                "binanceUid": "",
                "subtotalAmountInBTC": ""
            }
        ]
    },
    "code": "",
    "message": "",
}
Last modified: 2 years ago