CryptoCompare · Schema

CoinDesk Index Tick (CADLI / CCIX / CCIXBE)

Latest tick payload returned by data-api /index/cc/v1/latest/tick for CoinDesk Indices.

CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOn-ChainOrder BookStreamingIndex

Properties

Name Type Description
TYPE string Message type discriminator.
MARKET string
INSTRUMENT string Index instrument identifier (e.g. BTC-USD).
CCSEQ integer
VALUE number
VALUE_FLAG string
VALUE_LAST_UPDATE_TS integer
VALUE_LAST_UPDATE_TS_NS integer
CURRENT_HOUR_OPEN number
CURRENT_HOUR_HIGH number
CURRENT_HOUR_LOW number
CURRENT_HOUR_CHANGE number
CURRENT_HOUR_CHANGE_PERCENTAGE number
CURRENT_HOUR_VOLUME number
CURRENT_HOUR_QUOTE_VOLUME number
CURRENT_DAY_OPEN number
CURRENT_DAY_HIGH number
CURRENT_DAY_LOW number
CURRENT_DAY_CHANGE number
CURRENT_DAY_CHANGE_PERCENTAGE number
CURRENT_DAY_VOLUME number
CURRENT_DAY_QUOTE_VOLUME number
MOVING_24_HOUR_OPEN number
MOVING_24_HOUR_HIGH number
MOVING_24_HOUR_LOW number
MOVING_24_HOUR_CHANGE number
MOVING_24_HOUR_CHANGE_PERCENTAGE number
LIFETIME_HIGH number
LIFETIME_LOW number
LIFETIME_FIRST_TRADE_TS integer
View JSON Schema on GitHub

JSON Schema

cryptocompare-indextick-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.cryptocompare.com/schemas/cryptocompare/indextick.json",
  "title": "CoinDesk Index Tick (CADLI / CCIX / CCIXBE)",
  "description": "Latest tick payload returned by data-api /index/cc/v1/latest/tick for CoinDesk Indices.",
  "type": "object",
  "required": ["TYPE", "MARKET", "INSTRUMENT", "VALUE"],
  "properties": {
    "TYPE": {"type": "string", "description": "Message type discriminator."},
    "MARKET": {"type": "string", "enum": ["cadli", "ccix", "ccixbe"]},
    "INSTRUMENT": {"type": "string", "description": "Index instrument identifier (e.g. BTC-USD)."},
    "CCSEQ": {"type": "integer"},
    "VALUE": {"type": "number"},
    "VALUE_FLAG": {"type": "string", "enum": ["UP", "DOWN", "UNCHANGED"]},
    "VALUE_LAST_UPDATE_TS": {"type": "integer"},
    "VALUE_LAST_UPDATE_TS_NS": {"type": "integer"},
    "CURRENT_HOUR_OPEN": {"type": "number"},
    "CURRENT_HOUR_HIGH": {"type": "number"},
    "CURRENT_HOUR_LOW": {"type": "number"},
    "CURRENT_HOUR_CHANGE": {"type": "number"},
    "CURRENT_HOUR_CHANGE_PERCENTAGE": {"type": "number"},
    "CURRENT_HOUR_VOLUME": {"type": "number"},
    "CURRENT_HOUR_QUOTE_VOLUME": {"type": "number"},
    "CURRENT_DAY_OPEN": {"type": "number"},
    "CURRENT_DAY_HIGH": {"type": "number"},
    "CURRENT_DAY_LOW": {"type": "number"},
    "CURRENT_DAY_CHANGE": {"type": "number"},
    "CURRENT_DAY_CHANGE_PERCENTAGE": {"type": "number"},
    "CURRENT_DAY_VOLUME": {"type": "number"},
    "CURRENT_DAY_QUOTE_VOLUME": {"type": "number"},
    "MOVING_24_HOUR_OPEN": {"type": "number"},
    "MOVING_24_HOUR_HIGH": {"type": "number"},
    "MOVING_24_HOUR_LOW": {"type": "number"},
    "MOVING_24_HOUR_CHANGE": {"type": "number"},
    "MOVING_24_HOUR_CHANGE_PERCENTAGE": {"type": "number"},
    "LIFETIME_HIGH": {"type": "number"},
    "LIFETIME_LOW": {"type": "number"},
    "LIFETIME_FIRST_TRADE_TS": {"type": "integer"}
  }
}