# 查询期货合约产品信息

# 接口说明

查询期货合约产品信息。

# 接口地址

POST http://127.0.0.1:11111/trade/FuturesQueryProductInfo

  • Post请求示例
{
    "timeout_sec": 10,
    "params": {
        "stockCode": ["合约代码"]
    }
}
  • 响应结果
{
    "ok": true,
    "err": "",
    "data": {
        "productInfoVos": [{
            "prodCode": "string 产品代码",
            "instCode": "string 合约系列类型",
            "lotSize": "int32 每手数量",
            "decInPrice": "int32 产品价格小数位 0表示1,1表示0.1,2表示0.01跟priceDecimalPoint对应",
            "contractSize": "string 合约值",
            "priceDecimalPoint": "string 价格小数点,跟decInPrice对应]",
            "expiryDate": "string 产品到期时间 yyyy-MM-dd",
            "isSupportT1": "int32 是否支持T+1交易,0:否,1:是"
        }]
    }
}