CryptoCompare · Schema

CCData Asset

Asset record returned by data-api /asset/v1/data/by/symbol. Includes supply, classifications, consensus, industries, and supported platforms.

CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOn-ChainOrder BookStreamingIndex

Properties

Name Type Description
ID integer
SYMBOL string
ASSET_TYPE string
NAME string
LOGO_URL string
LAUNCH_DATE integer
DESCRIPTION string
ASSET_DESCRIPTION_SUMMARY string
CONSENSUS_MECHANISMS array
HASHING_ALGORITHMS array
PREVIOUS_ASSET_SYMBOLS array
SUPPLY_MAX number
SUPPLY_TOTAL number
SUPPLY_CIRCULATING number
SUPPLY_STAKED number
SUPPLY_BURNT number
SUPPLY_FUTURE number
ASSET_INDUSTRIES array
SUPPORTED_PLATFORMS array
CLASSIFICATIONS array
WEBSITE_URL string
BLOG_URL string
WHITE_PAPER_URL string
TWITTER_HANDLE string
View JSON Schema on GitHub

JSON Schema

cryptocompare-asset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.cryptocompare.com/schemas/cryptocompare/asset.json",
  "title": "CCData Asset",
  "description": "Asset record returned by data-api /asset/v1/data/by/symbol. Includes supply, classifications, consensus, industries, and supported platforms.",
  "type": "object",
  "required": ["ID", "SYMBOL", "NAME"],
  "properties": {
    "ID": {"type": "integer"},
    "SYMBOL": {"type": "string"},
    "ASSET_TYPE": {"type": "string", "enum": ["BLOCKCHAIN", "TOKEN", "STABLECOIN", "FIAT", "WRAPPED"]},
    "NAME": {"type": "string"},
    "LOGO_URL": {"type": "string"},
    "LAUNCH_DATE": {"type": "integer"},
    "DESCRIPTION": {"type": "string"},
    "ASSET_DESCRIPTION_SUMMARY": {"type": "string"},
    "CONSENSUS_MECHANISMS": {"type": "array", "items": {"type": "object"}},
    "HASHING_ALGORITHMS": {"type": "array", "items": {"type": "object"}},
    "PREVIOUS_ASSET_SYMBOLS": {"type": "array", "items": {"type": "string"}},
    "SUPPLY_MAX": {"type": "number"},
    "SUPPLY_TOTAL": {"type": "number"},
    "SUPPLY_CIRCULATING": {"type": "number"},
    "SUPPLY_STAKED": {"type": "number"},
    "SUPPLY_BURNT": {"type": "number"},
    "SUPPLY_FUTURE": {"type": "number"},
    "ASSET_INDUSTRIES": {"type": "array", "items": {"type": "object"}},
    "SUPPORTED_PLATFORMS": {"type": "array", "items": {"type": "object"}},
    "CLASSIFICATIONS": {"type": "array", "items": {"type": "object"}},
    "WEBSITE_URL": {"type": "string"},
    "BLOG_URL": {"type": "string"},
    "WHITE_PAPER_URL": {"type": "string"},
    "TWITTER_HANDLE": {"type": "string"}
  }
}