美股分析師一致預期
Longbridge US 賬戶
此方法僅適用於美國數據中心賬戶。
獲取美股分析師一致預期——營收、EPS 預測及買入/持有/賣出評級。
SDK Links
Parameters
SDK 方法參數。
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| symbol | string | 是 | 股票代碼,如 AAPL.US |
| report | string | 否 | 報告週期:af(年報)、saf(半年報)、qf(季報)、q1(Q1)、3q(Q3) |
Request Example
Response
Response Example
json
{
"ai_summary": "Analysts remain broadly bullish on AAPL with 35 Buy ratings...",
"aichat_data": {
"agent_id": "analyst_aapl",
"handoff_agent_id": "",
"symbol": "AAPL.US",
"text": "Analyst consensus summary for AAPL",
"type": "consensus",
"workflow_type": "analyst"
},
"currency": "USD",
"report": "af",
"list": [
{
"fiscal_year": 2025,
"report_txt": "FY2025",
"revenue": {"actual": "391035000000", "estimate": "388000000000"},
"eps": {"actual": "6.42", "estimate": "6.29"},
"ebit": {"actual": "125820000000", "estimate": "122000000000"}
}
],
"opt_reports": ["af", "qf"],
"h5_data": null
}Response Status
| 状態码 | 描述 | 结構 |
|---|---|---|
| 200 | 成功 | UsAnalystConsensus |
| 400 | 請求錯誤 | None |
Schemas
UsAnalystConsensus
| 名稱 | 類型 | 必填 | 描述 |
|---|---|---|---|
| ai_summary | string | 是 | AI 生成的分析師一致預期摘要 |
| aichat_data | USAIChatData | 是 | AI 對話上下文數據 |
| currency | string | 是 | 貨幣代碼,如 USD |
| report | string | 是 | 報告週期類型 |
| list | USConsensusItem[] | 是 | 按財年排列的一致預期數據 |
| opt_reports | string[] | 否 | 可選的報告期列表 |
| h5_data | any | 否 | H5 展示數據 |
USConsensusItem
| 名稱 | 類型 | 描述 |
|---|---|---|
| fiscal_year | int | 財年 |
| report_txt | string | 報告期標籤(如 FY2024) |
| revenue | USConsensusEstimate | 營收一致預期 |
| eps | USConsensusEstimate | EPS 一致预期 |
| ebit | USConsensusEstimate | EBIT 一致预期 |
USConsensusEstimate
| 名稱 | 類型 | 描述 |
|---|---|---|
| actual | string | 實際公布值 |
| estimate | string | 分析師一致預期值 |
USAIChatData
| 名稱 | 類型 | 描述 |
|---|---|---|
| agent_id | string | AI Agent 標識 |
| handoff_agent_id | string | 轉交 Agent 標識 |
| symbol | string | 股票代碼 |
| text | string | 對話上下文文本 |
| type | string | 對話類型 |
| workflow_type | string | 工作流類型 |