Smartlist APIs Launch
Effective May 29, 2026
Three new Smartlist APIs are now available under the /v2/market path. The new endpoints cover futures contracts, options contracts, and MTF-eligible stocks.
A smartlist is a curated, real-time ranked list of instruments grouped by a specific market signal — such as highest traded value, biggest open interest change, or strongest implied volatility move. Instead of scanning the entire market, you get a focused subset of contracts that are most relevant to a given category at that moment. For more information, see the Community post.
What's New
Get Futures Smartlist — Retrieve a ranked list of futures contracts filtered by
asset_type(INDEX,STOCK,COMMODITY) andcategory. Each entry includes live price data and the category-specific ranking metric.PREMIUMandDISCOUNTcategories are available forINDEXandSTOCKonly.Get Options Smartlist — Retrieve a ranked list of options contracts filtered by
asset_type(INDEX,STOCK,COMMODITY) andcategory. Options support additional categories —IV_GAINERS,IV_LOSERS,UNDER_5000, andUNDER_10000— forINDEXandSTOCKasset types.Get MTF Smartlist — Retrieve a ranked list of MTF-eligible stocks enriched with live LTP data. Each entry shows the
actual_price, the effectivemtf_priceafter margin, and themargin_saved— making it straightforward to identify the most capital-efficient MTF opportunities.
All three endpoints support pagination via page_number and page_size (maximum 50 per page) and require a valid OAuth access token.
Accepted Category Values
Futures (GET /v2/market/smartlist/futures):
| asset_type | Accepted category values |
|---|---|
| INDEX, STOCK | TOP_TRADED, MOST_ACTIVE, OI_GAINERS, OI_LOSERS, PRICE_GAINERS, PRICE_LOSERS, PREMIUM, DISCOUNT |
| COMMODITY | TOP_TRADED, MOST_ACTIVE, OI_GAINERS, OI_LOSERS |
Options (GET /v2/market/smartlist/options):
| asset_type | Accepted category values |
|---|---|
| INDEX, STOCK | TOP_TRADED, MOST_ACTIVE, OI_GAINERS, OI_LOSERS, PRICE_GAINERS, PRICE_LOSERS, IV_GAINERS, IV_LOSERS, UNDER_5000, UNDER_10000 |
| COMMODITY | TOP_TRADED, MOST_ACTIVE, OI_GAINERS, OI_LOSERS |
The metric_key field in each response indicates which metric was used for ranking:
| category | metric_key (Futures) | metric_key (Options) |
|---|---|---|
| TOP_TRADED | total_traded_value | total_traded_value |
| MOST_ACTIVE | volume_traded_today | volume_traded_today |
| OI_GAINERS, OI_LOSERS | open_interest | open_interest |
| PRICE_GAINERS, PRICE_LOSERS | price | price |
| PREMIUM | premium | — |
| DISCOUNT | discount | — |
| IV_GAINERS, IV_LOSERS | — | implied_volatility |
| UNDER_5000, UNDER_10000 | — | buy_margin |
How to Get Started
- Obtain an access token via the standard OAuth flow or generate a long-lived Analytics Token from your Developer Apps page.
- Choose the endpoint that matches your use case from the list above.
- Pass the required query parameters —
asset_typeandcategoryfor futures and options; pagination params only for MTF. - Use the
metric_keyfield in the response to understand which metric drove the ranking.