Get Futures Information
- GET /capi/v2/market/contracts
Weight(IP): 10
Request parameters
| Parameter | Type | Required? | Description | 
|---|---|---|---|
| symbol | String | No | Trading pair | 
Request example
curl "https://api-contract.weex.com/capi/v2/market/contracts?symbol=cmt_btcusdt"
Response parameters
| Parameter | Type | Description | 
|---|---|---|
| symbol | string | Trading pair | 
| underlying_index | string | Futures crypto | 
| quote_currency | string | Quote currency | 
| coin | string | Margin token | 
| contract_val | string | Futures face value | 
| listing | Creation time | |
| delivery | List | Array of settlement times | 
| size_increment | string | Quantity accuracy | 
| tick_size | string | Price accuracy | 
| forwardContractFlag | boolean | Whether it is USDT-M futures | 
| priceEndStep | int | Step size of the last decimal digit in the price | 
| minLeverage | int | Minimum leverage (default: 1) | 
| maxLeverage | int | Maximum leverage (default: 100) | 
| buyLimitPriceRatio | String | Ratio of bid price to limit price | 
| sellLimitPriceRatio | String | Ratio of ask price to limit price | 
| makerFeeRate | String | Maker rate | 
| takerFeeRate | String | Taker rate | 
| minOrderSize | String | Minimum order size (base currency) | 
| maxOrderSize | String | Maximum order size (base currency) | 
| maxPositionSize | String | Maximum position size (base currency) | 
Response example
[
  {
    "symbol": "cmt_btcusdt",
    "underlying_index": "BTC",
    "quote_currency": "USDT",
    "coin": "USDT",
    "contract_val": "0",
    "listing": null,
    "delivery": [
      "00:00:00",
      "08:00:00",
      "16:00:00"
    ],
    "size_increment": "5",
    "tick_size": "1",
    "forwardContractFlag": true,
    "priceEndStep": 1,
    "minLeverage": 1,
    "maxLeverage": 500,
    "buyLimitPriceRatio": "0.015",
    "sellLimitPriceRatio": "0.015",
    "makerFeeRate": "0.0002",
    "takerFeeRate": "0.0006",
    "minOrderSize": "0.0001",
    "maxOrderSize": "100000",
    "maxPositionSize": "1000000"
  }
]