Get post-earnings price movers
GET
/api/v1/public/calendar/post-earnings-movers5 credits / callAPI key required
Stocks that moved significantly after reporting earnings on a given date, pre-computed in a single call. Each mover includes the pre-earnings close, the post-reaction price, the percentage change, and EPS / revenue actuals versus estimates with surprise percentages.
Parameters
Query
Earnings date to check (YYYY-MM-DD).
Minimum absolute percentage price change to include (0-100, default 5; 0 returns all).
Maximum number of movers to return (1-100, default 25).
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/calendar/post-earnings-movers?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
fix parameters to runGET
https://api.signal8.ai/api/v1/public/calendar/post-earnings-movers?limit=10example · 200
{
"data": {
"date": "2026-05-08",
"movers": [
{
"ticker": "TTNNF",
"reportedTime": "--",
"preEarningsClose": 15.6,
"currentPrice": 24.64,
"changePct": 57.95,
"epsActual": 0.07356,
"epsEstimated": null,
"epsSurprisePct": null,
"revenueActual": 138971700,
"revenueEstimated": 123925700,
"revenueSurprisePct": 12.14
},
{
"ticker": "GRNQ",
"reportedTime": "--",
"preEarningsClose": 2.02,
"currentPrice": 1.57,
"changePct": -22.28,
"epsActual": -0.1,
"epsEstimated": null,
"epsSurprisePct": null,
"revenueActual": 405386,
"revenueEstimated": null,
"revenueSurprisePct": null
}
],
"meta": {
"totalReported": 285,
"moversCount": 3,
"minChangePct": 5
}
}
}