Analyst Estimates API


OVERVIEW
Get ratings and recommendations from FMP analysts, we use CAGR formula to predict and analyse stocks.
You will access all the key financial figures estimated. We use compound annual growth rate to estimate revenue as we found it gives the most accurate result. You can also access our Analyst Stock Recommendations API to see the past growth of any company financials

Analyst Estimates API


OVERVIEW
Get ratings and recommendations from FMP analysts, we use CAGR formula to predict and analyse stocks.
You will access all the key financial figures estimated. We use compound annual growth rate to estimate revenue as we found it gives the most accurate result. You can also access our Analyst Stock Recommendations API to see the past growth of any company financials

Analyst Estimates

https://financialmodelingprep.com/api/v3/analyst-estimates/AAPL?apikey=YOUR_API_KEY

curl https://financialmodelingprep.com/api/v3/analyst-estimates/AAPL?apikey=YOUR_API_KEY
[ {
  "symbol" : "AAPL",
  "date" : "2023-12-31",
  "estimatedRevenueLow" : 306907763421,
  "estimatedRevenueHigh" : 460361645134,
  "estimatedRevenueAvg" : 383634704278,
  "estimatedEbitdaLow" : 86145170339,
  "estimatedEbitdaHigh" : 129217755510,
  "estimatedEbitdaAvg" : 107681462925,
  "estimatedEbitLow" : 77432425549,
  "estimatedEbitHigh" : 116148638325,
  "estimatedEbitAvg" : 96790531937,
  "estimatedNetIncomeLow" : 100718671926,
  "estimatedNetIncomeHigh" : 67145781283,
  "estimatedNetIncomeAvg" : 83932226605,
  "estimatedSgaExpenseLow" : 16860504331,
  "estimatedSgaExpenseHigh" : 25290756496,
  "estimatedSgaExpenseAvg" : 21075630414,
  "estimatedEpsAvg" : 4.04,
  "estimatedEpsHigh" : 4.85,
  "estimatedEpsLow" : 3.23,
  "numberAnalystEstimatedRevenue" : 12,
  "numberAnalystsEstimatedEps" : 12
}, {
  "symbol" : "AAPL",
  "date" : "2022-12-31",
  "estimatedRevenueLow" : 279007057656,
  "estimatedRevenueHigh" : 418510586486,
  "estimatedRevenueAvg" : 348758822071,
  "estimatedEbitdaLow" : 78313791218,
  "estimatedEbitdaHigh" : 117470686828,
  "estimatedEbitdaAvg" : 97892239023,
  "estimatedEbitLow" : 70393114137,
  "estimatedEbitHigh" : 105589671206,
  "estimatedEbitAvg" : 87991392672,
  "estimatedNetIncomeLow" : 91562429025,
  "estimatedNetIncomeHigh" : 61041619349,
  "estimatedNetIncomeAvg" : 76302024187,
  "estimatedSgaExpenseLow" : 15327731211,
  "estimatedSgaExpenseHigh" : 22991596816,
  "estimatedSgaExpenseAvg" : 19159664014,
  "estimatedEpsAvg" : 3.665,
  "estimatedEpsHigh" : 4.3999999999999995,
  "estimatedEpsLow" : 2.93,
  "numberAnalystEstimatedRevenue" : 8,
  "numberAnalystsEstimatedEps" : 8
}, ...

ANALYST_ESTIMATES_WITH JAVA


URL url = new URL("https://financialmodelingprep.com/api/v3/analyst-estimates/AAPL?apikey=YOUR_API_KEY");

try (BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream(), "UTF-8"))) {
    for (String line; (line = reader.readLine()) != null;) {
    System.out.println(line);
  }
}
Resource List :