Financial Consensus
Get financial consensus estimates including revenue, EPS, and net income forecasts.
SDK Links
Parameters
SDK method parameters.
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | YES | Security symbol, e.g. 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 | Success | FinancialConsensus |
| 400 | Bad request | None |
Schemas
FinancialConsensus
| Name | Type | Required | Description |
|---|---|---|---|
| currency | string | false | Reporting currency |
| current_index | integer | false | Index of the current period in opt_periods |
| current_period | string | false | Current period code (e.g. qf) |
| list | object[] | true | List of consensus forecast periods, see ConsensusListItem |
| opt_periods | string[] | false | Available period options |
ConsensusListItem
| Name | Type | Required | Description |
|---|---|---|---|
| fiscal_period | string | false | Fiscal period number within the fiscal year |
| fiscal_year | integer | false | Fiscal year |
| period_text | string | false | Display period label (e.g. Q1 2027) |
| details | object[] | false | List of financial indicator details, see ConsensusDetail |
ConsensusDetail
| Name | Type | Required | Description |
|---|---|---|---|
| key | string | false | Indicator key (e.g. eps, revenue) |
| name | string | false | Indicator display name |
| description | string | false | Full description |
| actual | string | false | Actual reported value |
| estimate | string | false | Consensus estimate |
| comp | string | false | Comparison result (e.g. beat, miss) |
| comp_desc | string | false | Comparison description |
| comp_value | string | false | Comparison percentage value |
| is_released | boolean | false | Whether actual has been released |