Top gainers (close-to-close or extended-hours)
GET
/api/v1/public/market/movers/gainers2 credits / callAPI key required
Top gainers ranked by close-to-close % change. Excludes warrants, units, ETFs, and funds. Pass `session=premarket` or `session=afterhours` to rank against the extended-hours window instead of the regular session.
Parameters
Query
Max results (1-20, default 10)
Session window. `regular` (default) ranks by close-to-close. `premarket` uses `pre_market_change_percent`; `afterhours` uses `after_hours_change_percent`. Extended-hours sessions only return rows whose corresponding extended-hours columns are populated by the most recent ingest.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/market/movers/gainers?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/market/movers/gainers?limit=10example · 200
{
"data": {
"direction": "gainers",
"session": "regular",
"count": 3,
"movers": [
{
"rank": 1,
"ticker": "SLBT",
"name": "SL Science Holding Limited Ordinary Shares",
"exchange": "NASDAQ",
"price": 11.24,
"prevClose": 3.33,
"change": 7.91,
"changePercent": 237.5375,
"volume": 3900150,
"accumVolume": 12535036,
"dayHigh": 4.6,
"dayLow": 3,
"marketCap": null,
"isETF": false
},
{
"rank": 2,
"ticker": "TDIC",
"name": "Dreamland Limited Class A Ordinary Shares",
"exchange": "NASDAQ",
"price": 9.37,
"prevClose": 5.43,
"change": 3.94,
"changePercent": 72.5599,
"volume": 270012,
"accumVolume": 12452025,
"dayHigh": 6.5,
"dayLow": 5.3,
"marketCap": 14144540,
"isETF": false
},
{
"rank": 3,
"ticker": "AHMA",
"name": "Ambitions Enterprise Management Co. L.L.C",
"exchange": "NASDAQ",
"price": 3.01,
"prevClose": 1.93,
"change": 1.08,
"changePercent": 55.9585,
"volume": 49671486,
"accumVolume": 18488409,
"dayHigh": 2.46,
"dayLow": 1.8,
"marketCap": 89472250,
"isETF": false
}
]
}
}