Get forward analyst estimates
GET
/api/v1/public/companies/:ticker/estimates3 credits / callAPI key required
Get forward analyst estimates for a company, including EPS, revenue, EBITDA, and net income (low / high / average) with analyst counts. Supports annual and quarterly periods.
Parameters
Path
Company ticker symbol (1-5 letters, case-insensitive)
Query
Estimate period: annual (default) or quarter.
Max estimate periods to return (1-40, default 8).
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/companies/AAPL/estimates?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/companies/AAPL/estimates?limit=10example · 200
{
"data": {
"ticker": "AAPL",
"period": "annual",
"estimates": [
{
"symbol": "AAPL",
"date": "2030-09-27",
"revenueLow": 638891080931,
"revenueHigh": 706531100149,
"revenueAvg": 662325750000,
"ebitdaLow": 230598123915,
"ebitdaHigh": 255011771247,
"ebitdaAvg": 239056515155,
"netIncomeLow": 183512245825,
"netIncomeHigh": 209050390167,
"netIncomeAvg": 192360215552,
"epsAvg": 12.82,
"epsHigh": 13.93233,
"epsLow": 12.23032,
"numAnalystsRevenue": 17,
"numAnalystsEps": 15
},
{
"symbol": "AAPL",
"date": "2029-09-27",
"revenueLow": 588674256680,
"revenueHigh": 650997771945,
"revenueAvg": 610266961300,
"netIncomeAvg": 176847309464,
"epsAvg": 11.78613,
"numAnalystsRevenue": 16,
"numAnalystsEps": 14
}
]
}
}