v1

latestOpenAPI 3.0.02026-07-26166415635.8 KB
Screener

Top market movers

Returns the top market movers (gainers and losers) based on real time SIP data. The change for each symbol is calculated from the previous closing price and the latest closing price.

For stocks, the endpoint resets at market open. Until then, it shows the previous market day's movers. The data is split-adjusted. Only tradable symbols in exchanges are included.

For crypto, the endpoint resets at midnight.

get/v1beta1/screener/{market_type}/movers

Path parameters

market_type'stocks' | 'crypto' required

Market type (stocks or crypto).

Screen-specific market (stocks or crypto).

Query parameters

topinteger

Number of top market movers to fetch (gainers and losers). Will return this number of results for each. By default, 10 gainers and 10 losers.

Response

OK

last_updatedstring required

Time when the movers were last computed. Formatted as a RFC-3339 date-time with nanosecond precision.

market_type'stocks' | 'crypto' required

Market type (stocks or crypto).

Example response

{
  "gainers": [
    {
      "change": 2.46,
      "percent_change": 145.56,
      "price": 4.15,
      "symbol": "AGRI"
    }
  ],
  "losers": [
    {
      "change": 2.46,
      "percent_change": 145.56,
      "price": 4.15,
      "symbol": "AGRI"
    }
  ]
}