Most active stocks by volume
GET
/api/v1/public/market/movers/active2 credits / callAPI key required
Most active tickers ranked by daily share volume. Excludes warrants, units, ETFs, and funds. Only the regular session is supported on this route. Passing `session=premarket` or `session=afterhours` returns `400 INVALID_INPUT` — there is no ext-hours volume column to rank against, and combining RTH ranking with ext-hours pricing would produce confusing results. Use `gainers` / `losers` if you need an ext-hours session window.
Parameters
Query
Only `regular` is accepted on this route. `premarket` / `afterhours` produce `400 INVALID_INPUT`.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/market/movers/active?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/market/movers/active?limit=10example · 200
{
"data": {
"direction": "active",
"session": "regular",
"count": 3,
"movers": [
{
"rank": 1,
"ticker": "INHD",
"name": "Inno Holdings Inc.",
"exchange": "NASDAQ",
"price": 39.49,
"prevClose": 39.49,
"change": 0,
"changePercent": 0,
"volume": 278895621,
"accumVolume": null,
"dayHigh": 43.37,
"dayLow": 1.11,
"marketCap": 178522364,
"isETF": false
},
{
"rank": 2,
"ticker": "SPCX",
"name": "Space Exploration Technologies Corp.",
"exchange": "NASDAQ",
"price": 200.4203,
"prevClose": 192.5,
"change": 7.9203,
"changePercent": 4.1144,
"volume": 255405124,
"accumVolume": 31573141,
"dayHigh": 193,
"dayLow": 168.35,
"marketCap": 2623672878921,
"isETF": false
},
{
"rank": 3,
"ticker": "RGNT",
"name": "Regentis Biomaterials Ltd.",
"exchange": "AMEX",
"price": 7.83,
"prevClose": 9.4,
"change": -1.57,
"changePercent": -16.7021,
"volume": 186469105,
"accumVolume": 2921352,
"dayHigh": 15.5,
"dayLow": 1.6855,
"marketCap": 40554530,
"isETF": false
}
]
}
}