跳到主要内容

查询交易标的

接口说明

  • 功能说明:查询交易标的信息。

  • 适用对象:通过OpenAPI开发平台对接webull的客户。

  • 请求URL:/trade/instrument

  • 请求方式:GET

  • 频次限制:每个App ID调用频次限制为30秒10次。

请求参数

参数类型是否必填描述示例值
instrument_idString标的id913256135

响应参数

参数类型描述示例值
instrument_idString标的id913256135
symbolString标的代码AAPL
instrument_typeString标的类型:STOCK 股票STOCK
trade_policyString交易策略, TradePolicy数据字典ALL
margin_ratioString融资比例0
can_marginStringYes Or No,是否可融资YES

请求示例

from webullsdktrade.api import API
from webullsdkcore.client import ApiClient
from webullsdkcore.common.region import Region

api_client = ApiClient(your_app_key, your_app_secret, Region.US.value)
api = API(api_client)
response = api.trade_instrument.get_trade_instrument_detail(instrument_id)
if response.status_code == 200:
trade_instrument_detail = response.json()

响应示例

{
"instrument_id": "913256135",
"symbol":"AAPL",
"instrument_type":"STOCK",
"trade_policy":"ALL",
"margin_ratio":"0.0949",
"can_margin":"YES"
}

异常示例

{
"error_code": "SYSTEM_ERROR",
"message": "Required Integer parameter 'instrument_id' is not present"
}