earnings
GET/scrappy/markets/v1/earnings1 credit / call
Reported and scheduled earnings dates. Actuals are null until a report is filed.
Earnings dates refresh at most twice a day.
Parameters
- symbol
- required · a ticker symbol
- limit
- optional · 1 to 120
Request
curl "https://sfaie.com/api/scrappy/markets/v1/earnings?symbol=AAPL" \
-H "Authorization: Bearer $SFAIE_API_KEY"Response
{
"data": [
{
"date": "2025-01-30",
"eps_estimate": 2.36,
"eps_actual": null,
"revenue_estimate": 124300000000,
"revenue_actual": null
},
{
"date": "2024-10-31",
"eps_estimate": 1.6,
"eps_actual": 1.64,
"revenue_estimate": 94500000000,
"revenue_actual": 94930000000
}
]
}