Skip to main content
GET
/
v1
/
stock
/
earnings
Get Earnings Surprises
curl --request GET \
  --url https://api.aries.com/v1/stock/earnings \
  --header 'Authorization: Bearer <token>'
{
  "earningSurprises": [
    {
      "actual": 1.850000023841858,
      "estimate": 1.8075000047683716,
      "period": "2025-09-30",
      "quarter": 4,
      "surprise": 0.042500000447034836,
      "surprisePercent": 2.351300001144409,
      "symbol": "AAPL",
      "year": 2025
    }
  ]
}

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 to query (required). Send the plain uppercase symbol exactly as you'd type it on a brokerage screen, e.g. AAPL, MSFT, TSLA.

Example:

"AAPL"

limit
integer

(Optional) Number of results to return

Required range: x >= 1

Response

Successful response

earningSurprises
object[]