Get All Futures
Description
Get all futures data
HTTP Request
- GET /fapi/v1/public/futures
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://futuresopenapi.100ex.com/fapi/v1/public/futures'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| symbol | String | Trading pair, e.g. "BTC-USDT" |
| futuresName | String | Futures name, e.g. "E-BTC-USDT" |
| type | String | Futures type, E: Perpetual, Q:Quarterly, M:Monthly, W:Weekly, N:Next Week |
| side | String | Futures direction, 0:Negative, 1:Positive |
| pricePrecision | String | Order price precision |
| multiplier | String | Futures face value |
| multiplierCoin | String | Futures face value unit |
| minOrderVolume | String | Minimum order quantity |
| minOrderMoney | String | Minimum order price |
| maxMarketVolume | String | Market maximum order quantity |
| maxMarketMoney | String | Market maximum order price |
| maxLimitVolume | String | Limit maximum order quantity |
| maxLimitMoney | String | Limit maximum order price |
| maxValidOrder | String | Maximum valid amount of orders |
| status | String | Futures status, 0: Cannot be traded, 1: Can be traded |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": [
{
"symbol": "BTC-USDT",
"futuresName": "E-BTC-USDT",
"type": "E",
"side": "1",
"pricePrecision": "2",
"multiplier": "0.0001",
"multiplierCoin": "BTC",
"minOrderVolume": "1",
"minOrderMoney": "0.01",
"maxMarketVolume": "10000000",
"maxMarketMoney": "10000000",
"maxLimitVolume": "20000000",
"maxLimitMoney": "20000000",
"maxValidOrder": "20",
"status": "1"
},
...
]
}