跳转到内容

财务报告

获取任意上市公司的利润表、资产负债表和现金流量表。

CLI
longbridge financial-report TSLA.US --kind IS
longbridge financial-report AAPL.US

Parameters

SDK 方法参数。

NameTypeRequiredDescription
symbolstring证券代码,例如 AAPL.US
kindstring报表类型:IncomeStatement(利润表)、BalanceSheet(资产负债表)、CashFlow(现金流量表)、All(全部)
periodstring报告期:Annual(年报)、SemiAnnual(中报)、Q1/Q2/Q3/ThreeQ(季报)、QuarterlyFull(累计季报)

Request Example

Response

Response Example

json
{
  "code": 0,
  "message": "success",
  "data": {
    "list": {
      "IS": {
        "indicators": [
          {
            "title": "Income Statement",
            "short_title": "IS",
            "currency": "USD",
            "has_yoy": true,
            "entry": "IS",
            "periods": [
              "FY2025",
              "FY2024"
            ],
            "accounts": [
              {
                "field": "EPS",
                "name": "Earnings Per Share(USD)",
                "percent": false,
                "tip": "",
                "values": [
                  {
                    "period": "FY 2025",
                    "year": 2025,
                    "fp_end": "1758945600",
                    "value": "7.46",
                    "ratio": "",
                    "yoy": "0.227"
                  }
                ]
              }
            ]
          }
        ]
      }
    }
  }
}

Response Status

StatusDescriptionSchema
200成功FinancialReportsResponse
400请求错误None

Schemas

FinancialReportsResponse

NameTypeRequiredDescription
listobjecttrue按报表类型分组的数据(key 为报表类型代码,如 ISBSCF

FinancialReportIndicator

NameTypeRequiredDescription
titlestringfalse指标标题
short_titlestringfalse短标题
currencystringfalse货币
has_yoybooleanfalse是否有同比数据
entrystringfalse条目标识符
periodsstring[]false可用报告期列表
accountsobject[]false财务科目列表,见 FinancialAccount

FinancialAccount

NameTypeRequiredDescription
fieldstringtrue字段标识符
namestringfalse字段显示名称
percentbooleanfalse是否为百分比值
tipstringfalse提示说明
valuesobject[]false按报告期的历史数值,见 FinancialValue

FinancialValue

NameTypeRequiredDescription
periodstringtrue报告期标签(如 FY 2024
yearintegerfalse财政年度
fp_endstringfalse报告期结束时间戳
valuestringfalse报告值
ratiostringfalse比率值
yoystringfalse同比增长率