Skip to main content

接口

GET
string
https://api.llmquantdata.com/filings/sections

参数

必填

ticker
string
required
股票代码(如 AAPL)。
filing_type
string
required
文件类型,必须为 10-K10-Q
year
integer
required
财年(如 2024)。如指定 accession_number 则可省略。

选填

quarter
integer
季度编号(1–4),仅适用于 10-Q
item
string
指定章节编号。省略则返回所有章节。详见下方章节编号。
accession_number
string
SEC 受理号,精确定位某份 filing。

章节编号

10-K 章节

编号名称
1Business(业务概述)
1ARisk Factors(风险因素)
1BUnresolved Staff Comments
1CCybersecurity(网络安全)
2Properties
3Legal Proceedings
7MD&A(管理层讨论与分析)
7AMarket Risk(市场风险)
8Financial Statements(财务报表)
10Directors & Officers(董事与高管)
11Executive Compensation(高管薪酬)
12Security Ownership(股权结构)

10-Q 章节

编号名称
part1item1Financial Statements(财务报表)
part1item2MD&A(管理层讨论与分析)
part2item1aRisk Factors(风险因素)
10-K 和 10-Q 使用完全不同的编号体系,不可混用。

返回值

data
object

Bloomberg 风格用例

投资者动作BBG 命令API 参数
公司业务概述/DES?ticker=NVDA&filing_type=10-K&year=2025&item=1
风险因素/DRSK?ticker=AAPL&filing_type=10-K&year=2024&item=1A
季度 MD&A?ticker=MSFT&filing_type=10-Q&year=2025&quarter=2&item=part1item2
财务报表/FA?ticker=TSLA&filing_type=10-K&year=2024&item=8
高管信息/MGMT?ticker=META&filing_type=10-K&year=2024&item=10
股东结构/HS?ticker=META&filing_type=10-K&year=2024&item=12

代码示例

import requests

headers = {"Authorization": "Bearer your_api_key_here"}

url = (
    "https://api.llmquantdata.com/filings/sections"
    "?ticker=NVDA"
    "&filing_type=10-K"
    "&year=2025"
    "&item=1"
)

response = requests.get(url, headers=headers)
data = response.json().get("data")

for item in data["items"]:
    print(f"Item {item['number']}: {item['name']}")
    print(item["text"][:500])

响应示例

{
  "data": {
    "ticker": "NVDA",
    "filing_type": "10-K",
    "accession_number": "0001045810-26-000021",
    "year": 2025,
    "quarter": null,
    "available_sections": [
      { "section_key": "1", "section_title": "Business", "ordinal": 1, "char_count": 48578 }
    ],
    "items": [
      {
        "number": "1",
        "name": "Business",
        "text": "Item 1. Business\n\nOur Company\n\nNVIDIA pioneered accelerated computing..."
      }
    ]
  }
}