Market Data Documentation
  • Introduction
  • Technical Guidelines
  • Market Data APIs
    • Market Data API
      • Partial Order Book
      • Light Tickers
      • Live Trades
      • Auction Indicative Equilibrium Price
      • Candles
      • Get Settlement Prices
      • Instrument List
      • Calendar List
      • Tick Size List
  • Release Notes
    • API Changes
Powered by GitBook
On this page
  • Request
  • Response
  • Error Codes
  • Samples
  1. Market Data APIs
  2. Market Data API

Tick Size List

PreviousCalendar ListNextAPI Changes

Last updated 1 month ago

This API provides snapshot and real-time updates for tick size details.

Upon successful subscription, a snapshot of all tick size tables is sent. The last message of the snapshot contains lastMessage=Y. Any changes to the tick size tables after the snapshot are sent as subsequent updates.

In cases where there are no tick size tables to return, the system will send an empty message.

qualifier: v1/exchange.marketdata/tickSizeList

Request

No request parameters

Response

Similar to . (NEW v1.43.0) with below changes:

  • All numbers are non-stringified

(REMOVED v1.43.0) NOTE: All numbers are stringified

Error Codes

Code
Message

1

System is unavailable

Samples

{
  "q": "v1/exchange.marketdata/tickSizeList",
  "token": "eyJleGNoYW5nZUlkIjozMCwicHJvamVjdElkIjoyMDB9",
  "sid": 10,
  "d": {
  }
}
{
  "q": "v1/exchange.marketdata/tickSizeList",
  "sid": 15,
  "d": {
    "id": 1045,
    "name": "Group 2",
    "items": [
      {
        "price": 2,
        "tickSize": 0.001
      },
      {
        "tickSize": 0.00001
      }
    ]
  }
}
{
  "q": "v1/exchange.marketdata/tickSizeList",
  "sid": 14,
  "d": {
    "id": "1045",
    "name": "Group 2",
    "items": [
      {
        "price": "2",
        "tickSize": 0.001
      },
      {
        "tickSize": 0.00001
      }
    ]
  }
}
{
  "q": "v1/exchange.marketdata/tickSizeList",
  "sid": 10,
  "d": {
    "lastMessage": "Y"
  }
}

this