跳转到内容

获取标的的期权链到期日期权标的列表

该接口用于获取标的的期权链到期日期权标的列表。

CLI安装 CLI

bash
# AAPL 2026-04-17 到期的行权价列表
longbridge option chain AAPL.US --date 2026-04-17
# TSLA 2026-04-17 到期的行权价列表
longbridge option chain TSLA.US --date 2026-04-17
Info

Request

Parameters

NameTypeRequiredDescription
symbolstring标的代码,使用 ticker.region 格式,例如:700.HK
expiry_datestring期权到期日,使用 YYMMDD 格式,例如:20220429,通过 期权到期日 接口获取

Protobuf

protobuf
message OptionChainDateStrikeInfoRequest {
  string symbol = 1;
  string expiry_date = 2;
}

Request Example

Response

Response Properties

NameTypeDescription
strike_price_infoobject[]到期日期权标的列表
∟ pricestring行权价
∟ call_symbolstringCALL 期权标的代码
∟ put_symbolstringPUT 期权标的代码
∟ standardbool是否标准期权

Protobuf

protobuf
message OptionChainDateStrikeInfoResponse {
  repeated StrikePriceInfo strike_price_info = 1;
}

message StrikePriceInfo {
  string price = 1;
  string call_symbol = 2;
  string put_symbol = 3;
  bool  standard = 4;
}

Response JSON Example

json
{
  "strike_price_info": [
    {
      "price": "100",
      "call_symbol": "AAPL220429C100000.US",
      "put_symbol": "AAPL220429P100000.US",
      "standard": true
    },
    {
      "price": "105",
      "call_symbol": "AAPL220429C105000.US",
      "put_symbol": "AAPL220429P105000.US",
      "standard": true
    },
    {
      "price": "110",
      "call_symbol": "AAPL220429C110000.US",
      "put_symbol": "AAPL220429P110000.US",
      "standard": true
    },
    {
      "price": "115",
      "call_symbol": "AAPL220429C115000.US",
      "put_symbol": "AAPL220429P115000.US",
      "standard": true
    }
  ]
}

错误码

协议错误码业务错误码描述排查建议
3301600无效的请求请求参数有误或解包失败
3301606限流降低请求频次
7301602服务端内部错误请重试或联系技术人员处理
7301600请求数据非法检查请求的 symbolexpiry_date 数据格式