跳轉到內容

獲取標的公告

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

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 時間戳(秒)