Deribit · Schema

Publicgetvolatilityindexdataresponse

DerivativesCryptocurrencyBitcoinEthereumOptionsFuturesPerpetualsTradingMarket DataBlock TradingWebSocketFinancial

Properties

Name Type Description
jsonrpc string The JSON-RPC version (2.0)
id integer The id that was sent in the request
result object Volatility index candles.
View JSON Schema on GitHub

JSON Schema

PublicGetVolatilityIndexDataResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/deribit/json-schema/PublicGetVolatilityIndexDataResponse.json",
  "title": "Publicgetvolatilityindexdataresponse",
  "properties": {
    "jsonrpc": {
      "type": "string",
      "enum": [
        "2.0"
      ],
      "description": "The JSON-RPC version (2.0)"
    },
    "id": {
      "type": "integer",
      "description": "The id that was sent in the request"
    },
    "result": {
      "type": "object",
      "properties": {
        "data": {
          "type": "array",
          "description": "Candles as an array of arrays with 5 values each. The inner values correspond to the timestamp in ms, open, high, low, and close values of the volatility index correspondingly."
        },
        "continuation": {
          "type": "integer",
          "description": "Continuation - to be used as the `end_timestamp` parameter on the next request. `NULL` when no continuation."
        }
      },
      "description": "Volatility index candles."
    }
  },
  "required": [
    "jsonrpc",
    "result"
  ],
  "type": "object"
}