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 Positions

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

This method allows to get Mirrored asset position

Notes: Either walletIdStr or binanceUID must be provided.

API Key permission group : Enable Enquiry

Request

Query Params
walletIdStr
string 
optional

Wallet ID in string format

Example:
1450411129215791000
binanceUid
string 
optional

Binance UID

Example:
123456789
excludeZeroAmountFlag
string 
optional

Exclude the records with zero amount (Default is false)

Example:
false
timestamp
string 
required

Current timestamp in millisecond

Example:
1640995200000
pageLimit
string 
required

page limit

Example:
10
pageNo
string 
required
Example:
1
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 (PageResult«MirrorPositionVo») 
optional
total
integer 
optional
data
array[object (MirrorPositionVo) {6}] 
optional
Example:
pageNo
integer 
optional
Example:
pageSize
integer 
optional
Example:
code
string 
optional
message
string 
optional
Example
{
  "data": {
    "data": [
      {
        "walletIdStr": "1447771423539552758",
        "binanceUID": "12345678",
        "coinSymbol": "BUSD",
        "network": "BSC",
        "amount": "0.00000000000000000000",
        "amountInBTC": "0.000000000000000000000000000000000000000"
      },
      {
        "walletIdStr": "1447771423539552758",
        "binanceUID": "12345678",
        "coinSymbol": "BUSD",
        "network": "ETH",
        "amount": "0.00000000000000000000",
        "amountInBTC": "0.000000000000000000000000000000000000000"
      },
      {
        "walletIdStr": "1447771423539552758",
        "binanceUID": "12345678",
        "coinSymbol": "BTC",
        "network": "BTC",
        "amount": "0.00000000000000000000",
        "amountInBTC": "0.00000000000000000000"
      },
      {
        "walletIdStr": "1447771423539552758",
        "binanceUID": "12345678",
        "coinSymbol": "ADA",
        "network": "BSC",
        "amount": "0.00000000000000000000",
        "amountInBTC": "0.00000000000000000000000000000000000000000"
      },
      {
        "walletIdStr": "1447771423539552758",
        "binanceUID": "12345678",
        "coinSymbol": "CHZ",
        "network": "ETH",
        "amount": "0.00000000000000000000",
        "amountInBTC": "0.00000000000000000000000000000000000000000"
      }
    ],
    "totalPage": 8,
    "pageNo": 1,
    "pageLimit": 5
  },
  "code": "000000",
  "message": "Success"
}
Last modified: 2 years ago