Get Mirrored Asset Positions
GET
/open-api/v1/mirror/positions/listThis 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