Financial Report Snapshot
Get an AI-generated earnings summary, revenue/EBIT/EPS forecast vs actual (beat/miss analysis), and key financial ratios.
longbridge financial-report snapshot AAPL.US
longbridge financial-report snapshot AAPL.US --report qf --year 2024 --period 4SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. AAPL.US |
| report | string | NO | Report type: qf (quarterly) / saf (semi-annual) / af (annual) |
| fiscal_year | uint32 | NO | Fiscal year, e.g. 2024 |
| fiscal_period | string | NO | Fiscal period, e.g. 1 / 2 / 3 / 4 |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"name": "苹果",
"ticker": "AAPL",
"fp_start": "2025.12.28",
"fp_end": "2026.03.28",
"currency": "USD",
"report_desc": "概要:苹果(AAPL)的营业收入是 1112 亿(+16.6%);每股收益是 2.01(+21.82%)。",
"fo_revenue": {"value": "111184000000.0000", "yoy": "16.6", "cmp_desc": "", "est_value": ""},
"fo_ebit": {"value": "35885000000.0000", "yoy": "21.28", "cmp_desc": "", "est_value": ""},
"fo_eps": {"value": "2.0100", "yoy": "21.82", "cmp_desc": "", "est_value": ""},
"fr_revenue": {"value": "111184000000.0000", "yoy": "16.6"},
"fr_profit": {"value": "29578000000.0000", "yoy": "19.36"},
"fr_roe_ttm": "141.4705",
"fr_profit_margin": "26.6027",
"fr_debt_assets_ratio": "71.3025"
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | FinancialReportSnapshotResponse |
| 400 | Bad request | None |
Schemas
FinancialReportSnapshotResponse
| Name | Type | Required | Description |
|---|---|---|---|
| name | string | false | Company name |
| ticker | string | false | Ticker symbol without market suffix, e.g. AAPL |
| fp_start | string | false | Fiscal period start date in YYYY.MM.DD format |
| fp_end | string | false | Fiscal period end date in YYYY.MM.DD format |
| currency | string | false | Currency code |
| report_desc | string | false | AI-generated earnings summary |
| fo_revenue | object | false | Revenue forecast vs actual, see ForecastMetric |
| fo_ebit | object | false | EBIT forecast vs actual, see ForecastMetric |
| fo_eps | object | false | EPS forecast vs actual, see ForecastMetric |
| fr_revenue | object | false | Reported revenue, see ReportedMetric |
| fr_profit | object | false | Reported net profit, see ReportedMetric |
| fr_operate_cash | object | false | Operating cash flow, see ReportedMetric |
| fr_invest_cash | object | false | Investing cash flow, see ReportedMetric |
| fr_finance_cash | object | false | Financing cash flow, see ReportedMetric |
| fr_total_assets | object | false | Total assets, see ReportedMetric |
| fr_total_liability | object | false | Total liabilities, see ReportedMetric |
| fr_roe_ttm | string | false | ROE TTM as percentage, e.g. 141.47 |
| fr_profit_margin | string | false | Net profit margin as percentage |
| fr_profit_margin_ttm | string | false | Net profit margin TTM as percentage |
| fr_asset_turn_ttm | string | false | Asset turnover TTM as percentage |
| fr_leverage_ttm | string | false | Leverage TTM as percentage |
| fr_debt_assets_ratio | string | false | Debt-to-assets ratio as percentage |
ForecastMetric
| Name | Type | Required | Description |
|---|---|---|---|
| value | string | false | Actual value |
| yoy | string | false | Year-over-year growth as percentage, e.g. 16.6 |
| cmp_desc | string | false | Beat/miss description (may be empty) |
| est_value | string | false | Consensus estimate (may be empty) |
ReportedMetric
| Name | Type | Required | Description |
|---|---|---|---|
| value | string | false | Value |
| yoy | string | false | Year-over-year growth as percentage |