API Documentation

GET/api/1/market/top-movers

Top Gainers & Losers

Returns stocks with the largest positive and negative daily price changes

Parameters

2
countrystring
query

Filter by country code (e.g. US, DE). Default: US

limitnumber
query

Number 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
  }
}