Skip to main content

Get Futures Information

  • GET /capi/v2/market/contracts

Weight(IP): 10

Request parameters

ParameterTypeRequired?Description
symbolStringNoTrading pair

Request example

curl "https://api-contract.weex.com/capi/v2/market/contracts?symbol=cmt_btcusdt"

Response parameters

ParameterTypeDescription
symbolStringTrading pair
underlying_indexStringFutures crypto
quote_currencyStringQuote currency
coinStringMargin token
contract_valStringFutures face value
deliveryArraySettlement times
size_incrementStringDecimal places of the quantity
tick_sizeStringDecimal places of the price
forwardContractFlagBooleanWhether it is USDT-M futures
priceEndStepBigDecimalStep size of the last decimal digit in the price
minLeverageIntegerMinimum leverage (default: 1)
maxLeverageIntegerMaximum leverage (default: 100)
buyLimitPriceRatioStringRatio of bid price to limit price
sellLimitPriceRatioStringRatio of ask price to limit price
makerFeeRateStringMaker rate
takerFeeRateStringTaker rate
minOrderSizeStringMinimum order size (base currency)
maxOrderSizeStringMaximum order size (base currency)
maxPositionSizeStringMaximum position size (base currency)
marketOpenLimitSizeStringMarket Order Opening Position Single Limit (base currency)

Response example

[
{
"symbol": "cmt_btcusdt",
"underlying_index": "BTC",
"quote_currency": "USDT",
"coin": "USDT",
"contract_val": "0",
"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"
}
]