← 返回
未分类 中文

SEC Filings

Query SEC filings for any public company by name, ticker, or CIK. (Beta)
通过公司名称、股票代码或CIK查询上市公司SEC备案。(测试版)
lovelaceai lovelaceai 来源
未分类 clawhub v1.0.0-beta.4 3 版本 100000 Key: 无需
★ 2
Stars
📥 319
下载
💾 0
安装
3
版本
#latest

概述

Use curl to call the endpoint below. Server runs at https://labs.lovelace.ai/sec/api. Every request requires entity (company name, ticker, or CIK).

Each response includes a company profile (SIC code, state/country of incorporation, fiscal year end) and, for annual (10-K) and quarterly (10-Q) filings, extracted financial metrics: revenue, net income, total assets, and stockholders' equity.

/filings — list SEC filings

# By company name
curl "https://labs.lovelace.ai/sec/api/filings?entity=Apple&form_types=10-K&limit=4"

# By ticker
curl "https://labs.lovelace.ai/sec/api/filings?entity=NVDA&limit=5"

# By CIK
curl "https://labs.lovelace.ai/sec/api/filings?entity=320193"

# With date range (both bounds inclusive, YYYY-MM-DD)
curl "https://labs.lovelace.ai/sec/api/filings?entity=Microsoft&form_types=10-K,10-Q&after=2023-01-01"
curl "https://labs.lovelace.ai/sec/api/filings?entity=Microsoft&form_types=10-K&after=2020-01-01&before=2022-12-31"

# Markdown output
curl -H "Accept: text/markdown" "https://labs.lovelace.ai/sec/api/filings?entity=Apple&form_types=10-K&limit=3"

Parameters

ParamRequiredDescription
------------------------------
entityyesCompany name, ticker symbol, or CIK (max 256 chars)
form_typesnoComma-separated list. Omit for all supported types.
limitnoMax results (default 10, max 50)
afternoInclusive lower bound on filing date, YYYY-MM-DD
beforenoInclusive upper bound on filing date, YYYY-MM-DD

Valid form types

Use these values in form_types to narrow results. Omit to return all types.

ValueWhat it isWhen to use
-------------------------------
10-KAnnual ReportFull-year financial results, risk factors, business overview
10-QQuarterly ReportQuarterly financials and updates between annual reports
8-KCurrent ReportMaterial events: earnings releases, M&A, leadership changes, etc.
4Insider Ownership ChangesTrades or grants of shares by officers, directors, or 10%+ holders
SC 13DActivist Stake DisclosureFiled when an investor acquires >5% with intent to influence the company
SC 13GPassive Stake DisclosureFiled when an investor acquires >5% passively (no influence intent)
13F-HRInstitutional HoldingsQuarterly snapshot of a fund's equity holdings (≥$100M AUM required)
DEF 14AProxy StatementShareholder meeting agenda: board elections, exec pay, governance votes

Response

JSON object with top-level identity fields, a company profile, and a filings

array. Results are sorted most-recent first.

Top-level fields

FieldDescription
--------------------
nameCanonical entity name (e.g. "Apple Inc.")
cikSEC CIK (e.g. "0000320193")
alternativesOther close-match entities found during search (omitted when empty)

name and cik are present even when filings is empty, letting you confirm

which entity was found.

alternatives is a list of objects, each with name and cik, representing

other entities the server considered as matches. If the results look wrong, retry

with ?entity= to pin directly to a specific entity — CIK

lookups bypass fuzzy matching entirely.

company fields

FieldDescription
--------------------
sic_codeStandard Industrial Classification code
state_of_incorporationState or jurisdiction of incorporation
country_of_incorporationCountry of incorporation
fiscal_year_endFiscal year end date (MMDD, e.g. 0930 = September 30)
employeesTotal full-time equivalent employees

All company fields are omitted when not available in the KG.

filings fields

FieldDescription
--------------------
form_typeFiling type (e.g. 10-K, 8-K)
dateFiling date (YYYY-MM-DD)
accession_numberSEC accession number
cikCompany CIK
descriptionHuman-readable filing description
edgar_urlDirect link to the filing index on SEC EDGAR
dataExtracted financial metrics (10-K/10-Q only; null for other form types)

data fields (10-K and 10-Q only)

FieldDescription
--------------------
fiscal_yearFiscal year the filing covers (e.g. 2024)
fiscal_periodFiscal period (FY, Q1, Q2, Q3, Q4)
revenueTotal revenue (USD)
net_incomeNet income / profit (USD)
total_assetsTotal assets (USD)
stockholders_equityStockholders' equity (USD)

All data fields are omitted when not available in the KG.

{
  "name": "Apple Inc.",
  "cik": "0000320193",
  "company": {
    "sic_code": "3571",
    "state_of_incorporation": "CA",
    "fiscal_year_end": "0928"
  },
  "filings": [
    {
      "form_type": "10-K",
      "date": "2024-11-01",
      "accession_number": "0000320193-24-000123",
      "cik": "0000320193",
      "description": "Annual Report (Form 10-K)",
      "edgar_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000123/0000320193-24-000123-index.htm",
      "data": {
        "fiscal_year": 2024,
        "fiscal_period": "FY",
        "revenue": 391035000000,
        "net_income": 93736000000,
        "total_assets": 364980000000,
        "stockholders_equity": 56950000000
      }
    }
  ]
}

Add -H "Accept: text/markdown" for a human-readable markdown response instead of JSON.

Example prompts

These prompts work well with this skill:

  • "Show me Apple's last 3 annual reports with revenue and net income"
  • "What was Microsoft's revenue and net income in their most recent quarter?"
  • "Compare Amazon and Google's total assets from their latest 10-Ks"
  • "What 8-Ks has Nvidia filed in the last 90 days?"
  • "Find all insider trades at Meta since January"
  • "Who are the large passive shareholders of Microsoft? Show me their SC 13G filings"
  • "Pull Berkshire Hathaway's last two proxy statements"
  • "Has Amazon made any material event disclosures this quarter?"

Errors

HTTP statusMeaning
----------------------
400Bad request — missing entity, invalid after/before format, or unrecognised form_types
404Entity not found — try a different name, the ticker symbol, or the CIK
500Internal error — retry once; if it persists the server may be unavailable
503Server starting up — retry after a few seconds

By using this skill you agree to the Lovelace AI Terms and Conditions.

版本历史

共 3 个版本

  • v1.0.0-beta.4 当前
    2026-06-17 19:27
  • v1.0.0-beta.2
    2026-06-11 17:55
  • v1.0.0-beta.1
    2026-05-21 14:17 安全 安全

安全检测

腾讯云安全 (Keen)

队列中

腾讯云安全 (Sanbu)

队列中

🔗 相关推荐

professional

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 201 📥 64,362
professional

All-Market Financial Data Hub

financial-ai-analyst
基于东方财富数据库,支持自然语言查询金融数据,覆盖A股、港股、美股、基金、债券等资产,提供实时行情、公司信息、估值、财务报表等,适用于投资研究、交易复盘、市场监控、行业分析、信用研究、财报审计、资产配置等场景,满足机构与个人需求。返回结果为
★ 134 📥 43,065
professional

Stock Market Pro

kys42
Yahoo Finance (yfinance) 驱动的股票分析技能:行情报价、基本面、ASCII 趋势图、高分辨率图表(RSI/MACD/BB/VWAP/ATR),以及可选的网络...
★ 166 📥 40,480