美股分析师一致预期
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 | 工作流类型 |