机构共识
获取机构共识预测,包括营收、EPS 和净利润预测。
SDK Links
Parameters
SDK 方法参数。
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码,例如 TSLA.US |
Request Example
Response
Response Example
json
{
"code": 0,
"message": "success",
"data": {
"currency": "USD",
"current_index": 3,
"current_period": "qf",
"opt_periods": [
"qf",
"af",
"saf"
],
"list": [
{
"fiscal_year": 2026,
"fiscal_period": "Q2 FY2026",
"period_text": "Q2 FY2026",
"details": [
{
"key": "revenue",
"name": "Revenue",
"estimate": "95000000000",
"actual": "",
"comp": "",
"comp_value": null,
"comp_desc": "",
"description": "",
"is_released": false
}
]
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | 成功 | FinancialConsensus |
| 400 | 请求错误 | None |
Schemas
FinancialConsensus
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | 是 | 证券代码 |
| list | object[] | 是 | 共识预测期列表,见 ConsensusListItem |
| list[].period | string | 否 | 财报期(如 FY2024) |
| list[].revenue | int64 | 否 | 共识营收预测 |
| list[].eps | double | 否 | 共识 EPS 预测 |
| list[].net_income | int64 | 否 | 共识净利润预测 |
| list[].analyst_count | int32 | 否 | 参与预测的分析师数量 |