Price Movers
DevGET /markets/price-movers
Top price gainers and losers by 24h percentage change, filtered to symbols with a minimum 24h volume (to exclude illiquid tokens). Returns separate ranked lists of the biggest up and down movers. Use it to build a gainers/losers widget or scan for momentum candidates.
Authentication
Requires Dev tier or higher.
Parameters
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
min_value | float | – | Minimum 24h volume USD threshold. Defaults to 10M. |
limit | int | – | Number of entries per list. |
exchanges | string | – | Comma-separated exchange filter. |
Example request
bash
curl -H "X-Api-Key: lk_live_your_key_here" \
"https://api.loris.tools/markets/price-movers?min_value=50000000&limit=5"Example response
json
{
"timestamp": "2026-06-08 06:00:00",
"gainers": [
{
"symbol": "WIF",
"price_usd": 2.84,
"price_24h_change_pct": 42.1,
"rank": 1
},
{
"symbol": "PEPE",
"price_usd": 0.0000182,
"price_24h_change_pct": 38.4,
"rank": 2
}
],
"losers": [
{
"symbol": "ARB",
"price_usd": 0.62,
"price_24h_change_pct": -18.3,
"rank": 1
},
{
"symbol": "AVAX",
"price_usd": 28.4,
"price_24h_change_pct": -11.2,
"rank": 2
}
]
}