新浪中金所沪深300期权实时新浪财经
临时获取新浪财经新浪中金所沪深300期权实时数据,默认不入库。
临时请求新浪中金所沪深300指数期权单合约月份实时链,默认不入库。
输入参数
| 参数 | 类型 | 必填 | 说明 | 默认值 |
|---|---|---|---|---|
symbol | string | 否 | 中金所沪深300期权合约月份代码,例如 io2607;默认 io2607。 | "io2607" |
limit | integer | 否 | 最多返回行权价档位数,默认 100,最大 200。 | 100 |
返回字段
| 字段 | 类型 | 说明 |
|---|---|---|
contract_code | string | 合约月份代码,例如 io2607。 |
product_code | string | 中金所期权品种代码,例如 io。 |
underlying_name | string | 期权标的指数名称,例如 沪深300指数。 |
exercise_price | number | 行权价,单位:指数点。 |
call_symbol | string | 看涨期权完整合约代码。 |
call_bid_volume | number | 看涨买量。 |
call_bid_price | number | 看涨买价,单位:点。 |
call_latest_price | number | 看涨最新价,单位:点。 |
call_ask_price | number | 看涨卖价,单位:点。 |
call_ask_volume | number | 看涨卖量。 |
call_open_interest | number | 看涨持仓量。 |
call_change | number | 看涨涨跌,单位/口径沿用新浪源端。 |
put_symbol | string | 看跌期权完整合约代码。 |
put_bid_volume | number | 看跌买量。 |
put_bid_price | number | 看跌买价,单位:点。 |
put_latest_price | number | 看跌最新价,单位:点。 |
put_ask_price | number | 看跌卖价,单位:点。 |
put_ask_volume | number | 看跌卖量。 |
put_open_interest | number | 看跌持仓量。 |
put_change | number | 看跌涨跌,单位/口径沿用新浪源端。 |
exchange | string | 交易所代码,固定为 CFFEX。 |
调用示例
Python SDK
import axdata as ax
client = ax.AxDataClient()
rows = client.call(
"option_cffex_hs300_spot_sina",
limit=1,
symbol='io2607',
)
HTTP API
POST /v1/request/option_cffex_hs300_spot_sina
Content-Type: application/json
{
"params": {
"symbol": "io2607",
"limit": 1
}
}
真实样例快照
展示插件接口目录里的固定 example.response,页面打开不会再次请求源端。
请求参数
{
"symbol": "io2607",
"limit": 1
}
响应样例
| contract_code | product_code | underlying_name | exercise_price | call_symbol | call_bid_volume | call_bid_price | call_latest_price | call_ask_price | call_ask_volume | call_open_interest | call_change | put_symbol | put_bid_volume | put_bid_price | put_latest_price | put_ask_price | put_ask_volume | put_open_interest | put_change | exchange |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| io2607 | io | 沪深300指数 | 4200.0 | io2607C4200 | 1.0 | 605.8 | 626.0 | 627.8 | 1.0 | 83.0 | 5.89 | io2607P4200 | 7.0 | 1.2 | 1.2 | 1.4 | 5.0 | 818.0 | -50.0 | CFFEX |
生成时间:2026-07-06T16:54:55+00:00