Skip to main content

Option Greek Fields

This API endpoint provides option Greek data for specified instruments. The response contains all fields required to construct an option chain, as well as the current day's total trading volume.

NOTE
  • This API supports a maximum of 50 instrument keys in a single request.

Header Parameters

NameRequiredTypeDescription
AuthorizationtruestringRequires the format Bearer access_token where access_token is obtained from the Token API.
AccepttruestringDefines the content format the client expects, which should be set to application/json.

Query Parameters

NameRequiredDescription
instrument_keytrueComma separated list of instrument keys. For the regex pattern applicable to this field, see the Field Pattern Appendix.
Responses

Response body

{
"status": "success",
"data": {
"NSE_FO:NIFTY2540923000PE": {
"last_price": 412.2,
"instrument_token": "NSE_FO|43885",
"ltq": 75,
"volume": 3609600,
"cp": 831.2,
"iv": 0.33599853515625,
"vega": 3.3899,
"gamma": 0.0005,
"theta": -51.848,
"delta": -0.8081,
"oi": 2476650
}
}
}
NameTypeDescription
statusstringA string indicating the outcome of the request. Typically success for successful operations.
dataobjectData object holding option greek information
data.last_pricenumberThe last traded price of symbol
data.instrument_tokenstringKey of the instrument. For the regex pattern applicable to this field, see the Field Pattern Appendix.
data.ltqnumberLast traded quantity
data.volumenumberVolume traded today till current time
data.cpnumberPrevious day's closing price
data.ivnumberImplied Volatility
data.veganumberSensitivity of the option's price to changes in volatility.
data.gammanumberRate of change of delta with respect to changes in the underlying asset's price.
data.thetanumberRate of decline in the option's value due to the passage of time.
data.deltanumberSensitivity of the option's price to changes in the underlying asset's price.
data.oinumberOpen interest for the instrument.

Examples

A comprehensive set of examples is provided to illustrate various use cases and implementation scenarios for this API. To view detailed examples and access sample code, please refer to: API Examples.

Loading...