Indices List

The API retrieves index data for major stock indices such as NIFTY, BANKNIFTY, FINNIFTY, SENSEX, and BANKEX. It provides key information about these indices, including their current values, percentage changes, and other relevant market data.

Endpoint

https://connects.torusdigital.com/api/v1/indices

Request

cURL
curl -X 'GET' \
  'https://connects.torusdigital.com/api/v1/indices' \
  -H 'accept: application/json'

Response

[
  {
    "code": 20559,
    "exchange": "NSE",
    "name": "Nifty50",
    "price": 25383.75,
    "priceChange": 27.25,
    "changePercent": 0.10746751326089958
  },
  {
    "code": 26753,
    "exchange": "NSE",
    "name": "BankNifty",
    "price": 52153.15,
    "priceChange": 215.09999999999854,
    "changePercent": 0.41414723887400184
  },
  {
    "code": 41384,
    "exchange": "NSE",
    "name": "FINNifty",
    "price": 23989.85,
    "priceChange": 10.299999999999272,
    "changePercent": 0.0429532664291001
  },
  {
    "code": 20558,
    "exchange": "BSE",
    "name": "Sensex",
    "price": 82988.78,
    "priceChange": 97.83999999999651,
    "changePercent": 0.11803461270917727
  },
  {
    "code": 23998,
    "exchange": "BSE",
    "name": "BANKEX",
    "price": 58908.78,
    "priceChange": 179.22999999999593,
    "changePercent": 0.30471384399961077
  }
]

Response Parameter

ParameterDescription

code

Unique identifier for the index.

exchange

The stock exchange where the index is listed (e.g., "NSE", "BSE").

name

The name of the index (e.g., "Nifty50", "BankNifty").

price

The current value or price of the index.

priceChange

The absolute change in the index value compared to the previous close.

changePercent

The percentage change in the index value compared to the previous close.

Last updated