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
    }
  ]
}

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"

limit
integer

Maximum number of results to return. Use smaller values for UI pages and larger values for exports within API limits.

Required range: x >= 1

Response

Successful response

earningSurprises
object[]