Market Status

The Market Status API endpoint retrieves the current status of various market types and segments for specified exchanges, providing detailed information about their operational state. This ensures clients can track and respond to market conditions in real-time.

Endpoint

Base URL
https://connects.torusdigital.com/api/v1/market/status

Header Parameters

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Request Parameter

NameValueMandatoryDescription

source

N

Y

Source of the request (e.g., "N")

Request

cURL
curl --location 'https://connects.torusdigital.com/api/v1/market/status' \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--data '{
    "source": "N"
}'

Response

{
    "status": "success",
    "message": "Success",
    "data": [
        {
            "EMM_MKT_TYPE_NO": "2",
            "EMM_STATUS": "OPEN",
            "EMM_EXM_EXCH_ID": "BSE",
            "MARKET_TYPE": "OL",
            "EMM_MKT_DESCRIPTION": "AUCTION",
            "EMM_EXCH_SEG": "C"
        },
        {
            "EMM_MKT_TYPE_NO": "3",
            "EMM_STATUS": "CLOSE",
            "EMM_EXM_EXCH_ID": "NSE",
            "MARKET_TYPE": "SP",
            "EMM_MKT_DESCRIPTION": "SPOT",
            "EMM_EXCH_SEG": "E"
        }
    ]
}

Response Parameter

ParameterDescription

MARKET_TYPE

Market type, which can be NL (Normal), OL (Odd Lot), SP (Spot), AU (Auction), A1 (Auction 1), A2 (Auction 2), MS (Morning Session), ES (Evening Session), or SS (Special Session)

EMM_MARKET_TYPE_NO

Corresponding code for Market_type.

EMM_EXM_EXCH_ID

Exchange ID where the market operates (NSE, BSE,)

EMM_EXCH_SEG

Segment of the exchange (Equity, Currency, Mutual Funds, Derivatives)

EMM_STATUS

Current status of the market, which can be OPEN, CLOSE, PREOPEN, or POSTCLOSE

Last updated