Skip to main content
GET
/
v1
/
stock
/
ebit-estimate
Get EBIT Estimates
curl --request GET \
  --url https://api.aries.com/v1/stock/ebit-estimate \
  --header 'Authorization: Bearer <token>'
{
  "ebitEstimates": {
    "data": [
      {
        "ebitAvg": 36118999040,
        "ebitHigh": 37274001408,
        "ebitLow": 34582003712,
        "numberAnalysts": 25,
        "period": "2027-09-30",
        "year": 2027,
        "quarter": 4
      },
      {
        "ebitAvg": 26133999616,
        "ebitHigh": 26983999488,
        "ebitLow": 24916000768,
        "numberAnalysts": 25,
        "period": "2027-06-30",
        "year": 2027,
        "quarter": 3
      },
      {
        "ebitAvg": 23142000640,
        "ebitHigh": 23946999808,
        "ebitLow": 21992001536,
        "numberAnalysts": 25,
        "period": "2027-03-31",
        "year": 2027,
        "quarter": 2
      }
    ],
    "symbol": "AAPL",
    "freq": "quarterly"
  }
}

Documentation Index

Fetch the complete documentation index at: https://finance.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.

Query Parameters

symbol
string
required

Stock ticker symbol to research, such as AAPL. Required for this endpoint.

Example:

"AAPL"

freq
string

Reporting frequency to return. Use annual for yearly estimates or quarterly for quarter-by-quarter estimates.

Example:

"quarterly"

Response

Successful response

ebitEstimates
object