Top losers (close-to-close or extended-hours)
GET
/api/v1/public/market/movers/losers2 credits / callAPI key required
Top losers 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
Session window. `regular` (default) ranks by close-to-close. `premarket` uses `pre_market_change_percent`; `afterhours` uses `after_hours_change_percent`.
Code example
cURL
curl -X GET 'https://api.signal8.ai/api/v1/public/market/movers/losers?limit=10' \
-H "X-Api-Key: $SIGNAL8_API_KEY"Request URL
GET
https://api.signal8.ai/api/v1/public/market/movers/losers?limit=10example · 200
{
"data": {
"direction": "losers",
"session": "regular",
"count": 3,
"movers": [
{
"rank": 1,
"ticker": "CIIT",
"name": "Tianci International, Inc.",
"exchange": "NASDAQ",
"price": 0.6202,
"prevClose": 1.48,
"change": -0.8598,
"changePercent": -58.0946,
"volume": 12164541,
"accumVolume": 2206112,
"dayHigh": 1.975,
"dayLow": 1.32,
"marketCap": 2244446,
"isETF": false
},
{
"rank": 2,
"ticker": "HSPT",
"name": "Horizon Space Acquisition II Corp.",
"exchange": "NASDAQ",
"price": 3.3799,
"prevClose": 5.8,
"change": -2.4201,
"changePercent": -41.7259,
"volume": 784046,
"accumVolume": null,
"dayHigh": 12.6,
"dayLow": 3.59,
"marketCap": 19808543,
"isETF": false
},
{
"rank": 3,
"ticker": "PRFX",
"name": "PRF Technologies Ltd.",
"exchange": "NASDAQ",
"price": 1.68,
"prevClose": 2.49,
"change": -0.81,
"changePercent": -32.5301,
"volume": 47247816,
"accumVolume": 1178687,
"dayHigh": 3.94,
"dayLow": 1.36,
"marketCap": 1459510,
"isETF": false
}
]
}
}