Skip to main content

public/get-instrument-market-status

GET 

/public/get-instrument-market-status

Returns a paginated list of instrument market status changes. Use this endpoint to track when instruments become available or unavailable for trading.

Request

Query Parameters

    event_symbol string

    Filter by event symbol. Returns only market status for instruments belonging to this event.

    limit int32

    Maximum number of records to return per page. Defaults to 100.

    since int64

    Unix timestamp in nanoseconds. Returns records updated after this time. Defaults to 0.

    cursor string

    Pagination cursor from the previous response. Omit for the first request.

Success.
Schema
    id int64

    Echoed request id

    method string

    Method invoked

    code int32

    0 = success; non-zero indicates error (reason code).

    result object
    Present when code === 0. Instrument market status (data array).
    data object[]
    List of instrument market status records.
  • Array [
  • symbol string

    Unique instrument symbol.

    state string

    Current market trading status (e.g., OPEN, CLOSED).

    reason string

    Reason for the market status.

    last_updated_time int64

    Unix timestamp in nanoseconds when the status was last updated.

  • ]
  • next_cursor string

    Cursor for pagination. Use this value in the cursor parameter of the next request.

    message string

    Response message. Contains additional reason when code !== 0.

    original string

    Present when code !== 0.