CryptoCompare · Schema

CryptoCompare Blockchain Data Point

Single day of on-chain blockchain data returned by min-api /blockchain/latest and /blockchain/histo/day.

CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOn-ChainOrder BookStreamingIndex

Properties

Name Type Description
id integer
time integer Unix timestamp (seconds).
symbol string
zero_balance_addresses_all_time integer
unique_addresses_all_time integer
new_addresses integer
active_addresses integer
transaction_count integer
transaction_count_all_time integer
large_transaction_count integer Transactions over USD 100,000.
average_transaction_value number
block_height integer
hashrate number
difficulty number
block_time number
block_size integer
current_supply number
View JSON Schema on GitHub

JSON Schema

cryptocompare-blockchaindatapoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.cryptocompare.com/schemas/cryptocompare/blockchaindatapoint.json",
  "title": "CryptoCompare Blockchain Data Point",
  "description": "Single day of on-chain blockchain data returned by min-api /blockchain/latest and /blockchain/histo/day.",
  "type": "object",
  "required": ["time", "symbol"],
  "properties": {
    "id": {"type": "integer"},
    "time": {"type": "integer", "description": "Unix timestamp (seconds)."},
    "symbol": {"type": "string"},
    "zero_balance_addresses_all_time": {"type": "integer"},
    "unique_addresses_all_time": {"type": "integer"},
    "new_addresses": {"type": "integer"},
    "active_addresses": {"type": "integer"},
    "transaction_count": {"type": "integer"},
    "transaction_count_all_time": {"type": "integer"},
    "large_transaction_count": {"type": "integer", "description": "Transactions over USD 100,000."},
    "average_transaction_value": {"type": "number"},
    "block_height": {"type": "integer"},
    "hashrate": {"type": "number"},
    "difficulty": {"type": "number"},
    "block_time": {"type": "number"},
    "block_size": {"type": "integer"},
    "current_supply": {"type": "number"}
  }
}