CryptoCompare · Schema

CryptoCompare Coin List Entry

Single coin record returned by min-api /all/coinlist. Includes asset identification, supply, classification, and CCData taxonomy.

CryptocurrencyMarket DataReference RatesNewsSocialBlockchainOn-ChainOrder BookStreamingIndex

Properties

Name Type Description
Id string Internal CryptoCompare coin ID.
Url string
ImageUrl string
ContentCreatedOn integer
Name string
Symbol string
CoinName string
FullName string
Description string
AssetTokenStatus string
Algorithm string Hashing algorithm (SHA-256, Ethash, etc.).
ProofType string Consensus mechanism (PoW, PoS, DPoS, etc.).
SortOrder string
Sponsored boolean
Taxonomy object
Rating object
IsTrading boolean
View JSON Schema on GitHub

JSON Schema

cryptocompare-coinlistentry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.cryptocompare.com/schemas/cryptocompare/coinlistentry.json",
  "title": "CryptoCompare Coin List Entry",
  "description": "Single coin record returned by min-api /all/coinlist. Includes asset identification, supply, classification, and CCData taxonomy.",
  "type": "object",
  "required": ["Id", "Name", "Symbol"],
  "properties": {
    "Id": {"type": "string", "description": "Internal CryptoCompare coin ID."},
    "Url": {"type": "string"},
    "ImageUrl": {"type": "string"},
    "ContentCreatedOn": {"type": "integer"},
    "Name": {"type": "string"},
    "Symbol": {"type": "string"},
    "CoinName": {"type": "string"},
    "FullName": {"type": "string"},
    "Description": {"type": "string"},
    "AssetTokenStatus": {"type": "string"},
    "Algorithm": {"type": "string", "description": "Hashing algorithm (SHA-256, Ethash, etc.)."},
    "ProofType": {"type": "string", "description": "Consensus mechanism (PoW, PoS, DPoS, etc.)."},
    "SortOrder": {"type": "string"},
    "Sponsored": {"type": "boolean"},
    "Taxonomy": {
      "type": "object",
      "properties": {
        "Access": {"type": "string"},
        "FCA": {"type": "string"},
        "FINMA": {"type": "string"},
        "Industry": {"type": "string"},
        "CollateralizedAsset": {"type": "string"},
        "CollateralizedAssetType": {"type": "string"},
        "CollateralType": {"type": "string"},
        "CollateralInfo": {"type": "string"}
      }
    },
    "Rating": {
      "type": "object",
      "properties": {
        "Weiss": {
          "type": "object",
          "properties": {
            "Rating": {"type": "string"},
            "TechnologyAdoptionRating": {"type": "string"},
            "MarketPerformanceRating": {"type": "string"}
          }
        }
      }
    },
    "IsTrading": {"type": "boolean"}
  }
}