Get Dual Investment product list
API Description
Get Dual Investment product list
HTTP Request
GET /sapi/v1/dci/product/list
Request Weight
1(IP)
Request Parameters
Name | Type | Mandatory | Description |
---|---|---|---|
optionType | STRING | YES | Input CALL or PUT |
exercisedCoin | STRING | YES | Target exercised asset, e.g.: if you subscribe to a high sell product (call option), you should input: optionType :CALL,exercisedCoin :USDT,investCoin :BNB; if you subscribe to a low buy product (put option), you should input: optionType :PUT,exercisedCoin :BNB,investCoin :USDT |
investCoin | STRING | YES | Asset used for subscribing, e.g.: if you subscribe to a high sell product (call option), you should input: optionType :CALL,exercisedCoin :USDT,investCoin :BNB; if you subscribe to a low buy product (put option), you should input: optionType :PUT,exercisedCoin :BNB,investCoin :USDT |
pageSize | LONG | NO | Default: 10, Maximum: 100 |
pageIndex | INT | NO | Default: 1 |
recvWindow | LONG | NO | The value cannot be greater than 60000 |
timestamp | LONG | YES |
Response Example
{
"total": 1,
"list": [
{
"id": "741590",
"investCoin": "USDT",
"exercisedCoin": "BNB",
"strikePrice": "380",
"duration": 4,
"settleDate": 1709020800000,
"purchaseDecimal": 8,
"purchaseEndTime": 1708934400000,
"canPurchase": true, //true, false
"apr": "0.6076",
"orderId": 8257205859,
"minAmount": "0.1",
"maxAmount": "25265.7",
"createTimestamp": 1708560084000,
"optionType": "PUT",
"isAutoCompoundEnable": true, //true, false
"autoCompoundPlanList": [
"STANDARD",
"ADVANCE"
]
}
]
}