获取标的公告
获取指定股票的公告列表。
CLI安装 CLI
bash
# Apple 监管文件和公告
longbridge filings AAPL.US
# Tesla 监管文件和公告
longbridge filings TSLA.US
# NVDA 监管文件和公告
longbridge filings NVDA.USSDK Links
Request
| HTTP Method | GET |
| HTTP URL | /v1/quote/filings |
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | 股票代码,使用 ticker.region 格式,例如:AAPL.US |
Request Example
Response
Response Headers
- Content-Type: application/json
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"items": [
{
"id": "627391979864985729",
"title": "苹果 | 4 - Apple Inc. (0000320193) (Issuer)",
"description": "",
"file_name": "4 - Apple Inc. (0000320193) (Issuer)",
"file_urls": [
"https://www.sec.gov/Archives/edgar/data/320193/000178052526000005/xslF345X05/wk-form4_1773786674.xml"
],
"publish_at": "1773786677"
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 返回成功 | filings_response |
| 500 | 内部错误 | None |
Schemas
filings_response
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | 公告列表 |
| ∟ id | string | true | 公告 ID |
| ∟ title | string | true | 标题 |
| ∟ description | string | true | 摘要 |
| ∟ file_name | string | true | 文件名 |
| ∟ file_urls | string[] | true | 文件链接列表 |
| ∟ publish_at | string | true | 发布时间,Unix 时间戳(秒) |