Screeners
Equity¶
| Method | API Endpoint | Description |
|---|---|---|
| GET | /analysis/topgainers |
Top Gainers |
| GET | /analysis/toplosers |
Top Losers |
| GET | /analysis/52weekhigh |
52 Week High |
| GET | /analysis/52weeklow |
52 Week Low |
| GET | /analysis/riders |
Riders |
| GET | /analysis/draggers |
Draggers |
| GET | /analysis/topvolume |
Top Volume |
Top Gainer¶
The Top Gainers Equity API provides a list of equity stocks that have recorded the highest percentage price increase during the trading session.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
Top Loser¶
The Top Losers Equity API provides a list of equity stocks that have recorded the highest percentage price decline during the trading session.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
52 Week High¶
The 52‑Week High API provides the highest price level a stock has reached in the past 52 weeks (one year). It is a key indicator used by traders and analysts to evaluate performance, momentum, and potential resistance levels.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
52 Week Low¶
The 52‑Week Low API provides the lowest price level a stock has reached in the past 52 weeks (one year). It is a key indicator used by traders and analysts to evaluate downside risk, support levels, and long‑term performance.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
Riders¶
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
Draggers¶
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
Top Volume¶
The Top Gainers Equity API provides a list of equity stocks that have recorded the highest percentage price increase during the trading session.
Response Structure
{
"status": "Ok",
"message": "Success",
"result": [
{
"dateval": "2026-01-13",
"symbol": "PREMIERPOL",
"ltp": 49.03,
"pdc": 40.86,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE309M01020",
"token": "3908",
"exch": "NSE"
},
{
"dateval": "2026-01-13",
"symbol": "OILCOUNTUB",
"ltp": 62.73,
"pdc": 52.28,
"closePerChg": null,
"direction": "",
"highlight": "LTP",
"isin": "INE591A01010",
"token": "2472",
"exch": "NSE"
}
]
}
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| closePerChg | Float | Percentage change in closing price compared to previous close. May be null if not calculated. |
| direction | String | Indicates price movement direction (e.g., "UP", "DOWN"). Empty if not set. |
| highlight | String | Field highlighted for display (e.g., "LTP"). |
| isin | String | International Securities Identification Number (unique global identifier) |
| token | String | Internal token/identifier for the stock in the system. |
| exch | String | Exchange code where the stock is listed (e.g., "NSE"). |
F & O¶
| Method | API Endpoint | Description |
|---|---|---|
| POST | /screeners/highest/oi |
Highest OI |
| POST | /screeners/oi/gainers |
OI Gainers |
| POST | /screeners/oi/losers |
OI Losers |
| POST | /screeners/top/volume |
Top Volume |
| POST | /screeners/top/value |
Top Value |
| POST | /screeners/price/gainers |
Price Gainers |
| POST | /screeners/price/losers |
Price Losers |
Highest OI¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
OI Gainers¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
OI Losers¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Top Volume¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Top Value¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Price Gainers¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Price Losers¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Optional | Exchange NFO or BFO or MCX |
| type | string | Optional | Index or Stock |
| optionType | string | Optional | OPT for Options and FUT for Futures |
| Instrumet | string | Optional | Underlying Instrument |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Trending¶
| Method | API Endpoint | Description |
|---|---|---|
| POST | /screeners/highest/oi |
Most Traded |
| POST | /screeners/oi/gainers |
Most Bought |
| POST | /screeners/oi/losers |
Most Sold |
| POST | /screeners/top/volume |
Most Pledged |
| POST | /screeners/top/value |
Most Searched |
Most Traded¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Yes | Exchange NSE, BSE, NFO, BFO, MCX |
| Interval | string | Yes | 1D for day data, 30m for last 30 Mins data |
| offSet | string | Yes | Number of results required |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Most Bought¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Yes | Exchange NSE, BSE, NFO, BFO, MCX |
| Interval | string | Yes | 1D for day data, 30m for last 30 Mins data |
| offSet | string | Yes | Number of results required |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Most Sold¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Yes | Exchange NSE, BSE, NFO, BFO, MCX |
| Interval | string | Yes | 1D for day data, 30m for last 30 Mins data |
| offSet | string | Yes | Number of results required |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Most Pledged¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Yes | Exchange NSE, BSE, NFO, BFO, MCX |
| Interval | string | Yes | 1D for day data, 30m for last 30 Mins data |
| offSet | string | Yes | Number of results required |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |
Most Searched¶
Sample Request
Request Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| exch | string | Yes | Exchange NSE, BSE, NFO, BFO, MCX |
| Interval | string | Yes | 1D for day data, 30m for last 30 Mins data |
| offSet | string | Yes | Number of results required |
Sample Respone
{
"status": "Ok",
"message": "Success",
"requestTime": "13-Jan-2026 22:16:31",
"result": [
{
"formattedInsName": "NIFTY 27th JAN 26000 CE",
"token": "58801",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "157.4",
"poi": "7940790",
"ltp": "98",
"volume": "9051640",
"openInterest": "8690500",
"dateval": null,
"isin": null
},
{
"formattedInsName": "NIFTY 27th JAN 27000 CE",
"token": "58843",
"symbol": "NIFTY",
"exchange": "NFO",
"exch": null,
"pdc": "10.8",
"poi": "5543720",
"ltp": "9.25",
"volume": "2584205",
"openInterest": "5702515",
"dateval": null,
"isin": null
}
]
}
Response Parameters
| Field | Type | Description |
|---|---|---|
| status | String | Status of the API call (Ok if successful). |
| message | String | Message describing the result (Success on success). |
| result | Array | Contains list of stock data objects. |
| dateval | String | Date of the data record (YYYY‑MM‑DD format). |
| symbol | String | Trading symbol of the company (e.g., "PREMIERPOL"). |
| ltp | Float | Last Traded Price of the stock. |
| pdc | Float | Previous Day Close price. |
| token | String | Internal token/identifier for the stock in the system. |
| exchange | String | Exchange code where the stock is listed (e.g., "NFO"). |
| formattedInsName | String | Formatted Instrument Name |
| poi | String | OI at previous day close |
| openInterest | String | Open Interest |