Get Stock Quote
Returns the daily closing price (EOD) or the 15-minute delayed price during market hours.
GET
/v2/stocks/{ticker}/quote
Response Example:
{
"ticker": "TCS",
"exchange": "NSE",
"name": "Tata Consultancy Services Ltd",
"close_price": 3942.50,
"change": 42.30,
"change_percent": 1.08,
"open": 3900.00,
"high": 3955.00,
"low": 3895.00,
"volume": 2847213,
"delayed_by_minutes": 15,
"timestamp": "2026-07-06T09:45:30Z"
}
Get Candle History
Retrieves historical OHLCV data for listed Indian equities.
GET
/v2/stocks/{ticker}/ohlcv?interval=1d&days_back=30
Parameters:
interval(optional):30m,1d,1w,1mo(default:1d)days_back(optional): Max 365 (default: 30)
Get Option Chain & Greeks
Returns calls and puts with Implied Volatility and calculated BSM Option Greeks.
GET
/v2/stocks/{ticker}/options?expiry=2026-07-31
Get Financial Ratios
Returns profitability, valuation, and leverage health ratios.
GET
/v2/stocks/{ticker}/ratios
Post Stock Screener
Screens listed equities dynamically using fundamental parameters.
POST
/v2/screener
Request Payload Example:
{
"pe_max": 25,
"roe_min": 15,
"sector": "Information Technology"
}