跳转到内容

获取标的公告

获取指定股票的公告列表。

CLI安装 CLI

bash
# Apple 监管文件和公告
longbridge filings AAPL.US
# Tesla 监管文件和公告
longbridge filings TSLA.US
# NVDA 监管文件和公告
longbridge filings NVDA.US

Request

HTTP MethodGET
HTTP URL/v1/quote/filings

Query Parameters

NameTypeRequiredDescription
symbolstringYES股票代码,使用 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

StatusDescriptionSchema
200返回成功filings_response
500内部错误None

Schemas

filings_response

NameTypeRequiredDescription
itemsobject[]true公告列表
∟ idstringtrue公告 ID
∟ titlestringtrue标题
∟ descriptionstringtrue摘要
∟ file_namestringtrue文件名
∟ file_urlsstring[]true文件链接列表
∟ publish_atstringtrue发布时间,Unix 时间戳(秒)