API Documentation
⌘K
API Key
Get free key GET
/api/1/market/top-moversTop Gainers & Losers
Returns stocks with the largest positive and negative daily price changes
Parameters
2countrystringFilter by country code (e.g. US, DE). Default: US
limitnumberNumber of gainers AND losers to return (default 20, max 50)
Responses
Was this helpful?
Request
curl -X GET \
'https://api.eulerpool.com/api/1/market/top-movers?country=US&limit=20' \
-H 'Accept: application/json'200 Response
{
"gainers": {
"isin": "string",
"ticker": "string",
"name": "string",
"price": 0,
"change": 0,
"changePct": 0
},
"losers": {
"isin": "string",
"ticker": "string",
"name": "string",
"price": 0,
"change": 0,
"changePct": 0
}
}