实时摆盘
目前不支持通过 Webull OpenAPI 请求行情数据,请保持关注。接口说明
功能说明:
- 根据证券代码查询标的的摆盘数据。
请求URL:/market-data/quotes
请求方式:通过Webull SDK建立GRPC长连接,然后调用接口获取。
频次限制:每个App ID调用频次限制为1次每秒。
请求参数
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
symbol | String | 是 | 证券代码;例如:AAPL |
category | String | 是 | 证券类型,枚举,参考:证券类型,如:US_STOCK |
响应参数
字段 | 类型 | 说明 |
---|---|---|
symbol | String | 证券代码 |
instrument_id | String | 标的ID |
asks | []AskBid | 卖盘 |
bids | []AskBid | 买盘 |
AskBid
字段 | 类型 | 说明 |
---|---|---|
price | String | 价格 |
size | String | 挂单量 |
order | []Order | 订单 |
broker | []Broker | 经纪商 |
Order
字段 | 类型 | 说明 |
---|---|---|
mpid | String | 市场参与者识别码 |
size | String | 订单数量 |
Broker
字段 | 类型 | 说明 |
---|---|---|
bid | String | 经纪商ID |
name | String | 经纪商 |
请求示例
- Python
- Java
from webullsdktrade.grpc_api import API
from webullsdkquotescore.grpc.grpc_client import GrpcApiClient
from webullsdkcore.common.region import Region
grpc_client = GrpcApiClient(your_app_key, your_app_secret, Region.US.value)
api = API(grpc_client)
response = api.market_data.get_quote(symbol, category)
if response.status_code == 200:
result = response.json()
try (QuotesApiClient quotesApiClient = QuotesApiClient.builder()
.appKey(Env.APP_KEY)
.appSecret(Env.APP_SECRET)
.regionId(Region.us.name())
.build()) {
Quote quote = quotesApiClient.getQuote(symbol, category);
}