Forecast EPS
Get EPS forecasts and analyst consensus estimates.
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": {
"items": [
{
"forecast_end_date": "1727827200",
"forecast_eps_highest": "3.71",
"forecast_eps_lowest": "2.37",
"forecast_eps_mean": "2.998",
"forecast_eps_median": "3.02",
"forecast_start_date": "1727827200",
"institution_down": 0,
"institution_total": 0,
"institution_up": 0
}
]
}
}Response Status
| Status | Description | Schema |
|---|---|---|
| 200 | Success | ForecastEps |
| 400 | Bad request | None |
Schemas
ForecastEps
| Name | Type | Required | Description |
|---|---|---|---|
| items | object[] | true | List of EPS forecast periods |
| ∟ forecast_start_date | string | false | Forecast period start date |
| ∟ forecast_end_date | string | false | Forecast period end date |
| ∟ forecast_eps_mean | string | false | Mean EPS estimate |
| ∟ forecast_eps_median | string | false | Median EPS estimate |
| ∟ forecast_eps_highest | string | false | Highest EPS estimate |
| ∟ forecast_eps_lowest | string | false | Lowest EPS estimate |
| ∟ institution_total | integer | false | Total contributing institutions |
| ∟ institution_up | integer | false | Institutions revising up |
| ∟ institution_down | integer | false | Institutions revising down |