Skip to main content

Exchange Status

API to retrieve the market status for a particular exchange.

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.

Path Parameters

NameRequiredTypeDescription
exchangetruestringThe unique identifier for an exchange for which market status data is being queried. For the regex pattern applicable to this field, see the Field Pattern Appendix.
Responses

Response Body

{
"status": "success",
"data": {
"exchange": "NSE",
"status": "NORMAL_OPEN",
"last_updated": 1705549500000
}
}
NameTypeDescription
statusstringA string indicating the outcome of the request. Typically success for successful operations.
dataobjectData object holding market status information for an exchange.
data.exchangestringExchange to which the market status is associated. Valid exchanges can be found in the Exchange Appendix
data.statusstringCurrent exchange status. Valid market statuses can be found in the Market Status Appendix
data.last_updatednumberThe timestamp at which the market status was last updated.

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...