获取标的列表
获取标的列表
SDK Links
Python |
Rust |
Go |
Node.js |
Request
HTTP Method | GET |
HTTP URL | /v1/quote/get_security_list |
Parameters
Content-Type: application/json; charset=utf-8
Name | Type | Required | Description |
---|---|---|---|
market | string | YES | 市场,目前只支持 US |
category | string | YES | 市场下分类,目前只支持 Overnight |
Request Example
from longport.openapi import QuoteContext, Config, Market, SecurityListCategory
config = Config.from_env()
ctx = QuoteContext(config)
resp = ctx.security_list(Market.US, SecurityListCategory.Overnight)
print(resp)
Response
Response Headers
- Content-Type: application/json
Response Example
{
"code": 0,
"data": {
"list": [
{
"symbol": "BAC.US",
"name_cn": "美国银行",
"name_hk": "美國銀行",
"name_en": "Bank of America"
},
{
"symbol": "RDDT.US",
"name_cn": "REDDIT INC",
"name_hk": "REDDIT INC",
"name_en": "REDDIT INC"
},
{
"symbol": "GOOGL.US",
"name_cn": "谷歌-A",
"name_hk": "谷歌-A",
"name_en": "Alphabet"
}
]
}
}
Response Status
Status | Description | Schema |
---|---|---|
200 | 返回成功 | security_response |
400 | 参数错误 | None |
Schemas
security_response
Name | Type | Required | Description |
---|---|---|---|
list | object[] | false | 列表 |
∟ symbol | integer | true | 标的代码 |
∟ name_cn | string | true | 中文名称 |
∟ name_hk | string | true | 繁体名称 |
∟ name_en | string | true | 英文名称 |
错误码
业务错误码 | 描述 | 排查建议 |
---|---|---|
310010 | 无效的请求 | 请求参数有误 |
310011 | 服务端内部错误 | 请重试或联系技术人员处理 |