v1

latestOpenAPI 3.0.02026-07-26166415635.8 KB
Screener

Most active stocks

Returns the most active stocks by volume or trade count based on real time SIP data. By default, returns the top 10 symbols by volume.

get/v1beta1/screener/stocks/most-actives

Query parameters

by'volume' | 'trades'

The metric used for ranking the most active stocks.

topinteger

The number of top most active stocks to fetch per day.

Response

OK

last_updatedstring required

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

Example response

{
  "most_actives": [
    {
      "symbol": "AAPL",
      "trade_count": 639626,
      "volume": 122709184
    }
  ]
}