latestSwagger 2.02026-08-12187723.0 MB

c4a12725cdb5

market_data

Market movers

The market movers endpoint provides a ranked list of the top-gaining and losing assets for the current trading day. It returns detailed data on the highest percentage price increases and decreases since the previous day's close. This endpoint supports international equities, forex, and cryptocurrencies, enabling users to quickly identify significant market movements across various asset classes.

get/market_movers/{market}

Path parameters

market'stocks' | 'etf' | 'mutual_funds' | 'forex' | 'crypto' required

Market type

Query parameters

direction'gainers' | 'losers'

Specifies direction of the snapshot gainers or losers

outputsizeinteger

Specifies the size of the snapshot. Can be in a range from 1 to 50

countrystring

Country of the snapshot, applicable to non-currencies only. Takes country name or alpha code

price_greater_thanstring

Takes values with price grater than specified value

dpstring

Specifies the number of decimal places for floating values. Should be in range [0,11] inclusive

Response

statusstring required

Response status

Example response

{
  "values": [
    {
      "symbol": "BSET",
      "name": "Bassett Furniture Industries Inc",
      "exchange": "NASDAQ",
      "mic_code": "XNAS",
      "datetime": "2023-10-01 12:00:00Z",
      "last": 17.25,
      "high": 18,
      "low": 16.5,
      "volume": 108297,
      "change": 3.31,
      "percent_change": 23.74462
    }
  ],
  "status": "ok"
}