market:options:tickers

Subscribes/Unsubscribes to market options Tickers data.


🆕

Important Update: WebSocket Endpoint Migration

We are excited to announce an upgrade to our WebSocket service! To ensure that our users enjoy enhanced reliability and performance, we have migrated our WebSocket endpoint. Please update your applications to connect to the new endpoint as described here:

  • Old Endpoint: wss://ws.web3api.io/
  • New Endpoint: wss://ws.amberdata.com/options

Action Required

Users are required to update the endpoint URL in their applications. The good news is that the response JSON schemas remain unchanged, so you can expect a seamless transition with minimal adjustments needed on your end.

Support

We understand that changes like these can raise questions. Our support team is here to assist with any issues or concerns you may have during this migration process. Please don’t hesitate to contact us for support at: [email protected].

We appreciate your prompt action to migrate to the new WebSocket endpoint.

Once you're connected to this subscription: wss://ws.amberdata.com/options, you must provide either the instrument or exchange - one needs to be specified, both cannot be empty.

Request

{
  "jsonrpc" : "2.0",
  "id"      : 1,
  "method"  : "subscribe",
  "params"  : [ "market:options:tickers", { "instrument": "ETH-30SEP22-9000-P", "exchange": "deribit" } ]
}
ParamTypeDescription
instrumentstringThe asset instrument.
exchangestringThe exchange for which to retrieve asset instruments.

Response

{
    "jsonrpc": "2.0",
    "method": "subscription",
    "params": {
        "subscription": "cd9738ab-54e9-4bcf-a3f8-be3c7976e694",
        "result": {
            "exchange": "deribit",
            "instrument": "BTC-12APR24-71000-C",
            "timestamp": 1711571450748,
            "exchangeTimestamp": 1711571450748,
            "exchangeTimestampNanoseconds": 0,
            "bid": 0.0475,
            "ask": 0.0485,
            "mid": 0.048,
            "last": 0.049,
            "baseVolume": null,
            "quoteVolume": null,
            "bidVolume": 4.7,
            "askVolume": 26.4,
            "sequence": null,
            "metadata": null,
            "underlyingPrice": 69593.63,
            "underlyingIndex": "SYN.BTC-12APR24",
            "stats": {
                "volume_usd": 376871.48,
                "volume": 88.7,
                "price_change": -16.9492,
                "low": 0.049,
                "high": 0.0669
            },
            "state": "open",
            "settlementPrice": 0.05367167,
            "openInterest": 293.2,
            "minPrice": 0.017,
            "maxPrice": 0.1,
            "markPrice": 0.0477,
            "markIv": 69.03,
            "interestRate": 0,
            "indexPrice": 68916.13,
            "greeks": {
                "rho": 12.52907,
                "theta": -127.19004,
                "vega": 57.0353,
                "gamma": 0.00004,
                "delta": 0.47224
            },
            "estimatedDeliveryPrice": 68916.13,
            "bidIv": 68.79,
            "askIv": 70.01
        }
    }
}
FieldTypeDescription
exchangestringThe exchange.
instrumentstringThe instrument.
exchangeTimestampnumber | nullTimestamp that the exchange returned.
exchangeTimestampNanosecondsnumber | nullNanoseconds part of exchangeTimestamp.
timestampnumber | nullThe time at which the ticker took place.
bidnumber | nullThe bid of the market pair.
asknumber | nullThe ask of the market pair.
midnumber | nullThe mid of the market pair.
lastnumber | nullThe last of the market pair.
baseVolumenumber | null
quoteVolumenumber | null
bidVolumenumber | nullIt represents the requested order size of all best bids.
askVolumenumber | nullIt represents the requested order size of all best asks.
sequencenumber | null
metadatanumber | null
underlyingPricestring | nullUnderlying price for implied volatility calculations.
underlyingIndexstring | nullName of the underlying future, or indexPrice.
statsobject | null
stats.highnumber | nullHighest price during 24h.
stats.lownumber | nullLowest price during 24h.
stats.volumenumber | nullVolume during last 24h in base currency.
stats.price_changenumber | null24-hour price change expressed as a percentage, null if there weren't any trades.
statestring | nullThe state of the order book. Possible values are open and closed.
settlementPricenumber | nullThe settlement price for the instrument. Only when state = open.
openInterestnumber | nullThe total amount of outstanding contracts in the corresponding amount units. For perpetual and futures the amount is in USD units, for options it is amount of corresponding cryptocurrency contracts, e.g., BTC or ETH.
minPricenumber | nullThe minimum price for the future. Any sell orders you submit lower than this price will be clamped to this minimum.
maxPricenumber | nullThe maximum price for the future. Any buy orders you submit higher than this price, will be clamped to this maximum.
markPricenumber | nullThe mark price for the instrument.
markIvnumber | nullImplied volatility for mark price.
interestRatenumber | nullInterest rate used in implied volatility calculations.
indexPricenumber | nullCurrent index price.
greeksobject | null
greeks.deltanumber | nullThe delta value for the option.
greeks.gammanumber | nullThe gamma value for the option.
greeks.rhonumber | nullThe rho value for the option.
greeks.thetanumber | nullThe theta value for the option.
greeks.veganumber | nullThe vega value for the option.
estimatedDeliveryPricenumber | nullEstimated delivery price for the market.
bidIvnumber | nullImplied volatility for best bid.
askIvnumber | nullImplied volatility for best ask.

Example

const WebSocket = require('ws');
const ws = new WebSocket('wss://ws.amberdata.com/options', {headers: {x-api-key:'<api_key>'}});

ws.on('open', () => {
  ws.send(JSON.stringify({
      jsonrpc: '2.0',
      method: 'subscribe',
      params: ['market:options:tickers', {'instrument': 'ETH-30SEP22-9000-P', 'exchange': 'deribit'}],
      id: 1,
    }));
});

ws.on('message', data => {
  console.log(JSON.stringify(JSON.parse(data), null, 2));
});