Cardano · Schema

Nutlink Address Tickers

BlockchainCryptocurrencyProof-of-StakeSmart ContractsWeb3
View JSON Schema on GitHub

JSON Schema

nutlink-address-tickers.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://cardano.blockfrost.io/schema/nutlink_address_tickers",
  "title": "Nutlink Address Tickers",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "name": {
        "type": "string",
        "description": "Name of the ticker"
      },
      "count": {
        "type": "integer",
        "description": "Number of ticker records"
      },
      "latest_block": {
        "type": "integer",
        "description": "Block height of the latest record"
      }
    },
    "required": [
      "name",
      "count",
      "latest_block"
    ]
  },
  "example": [
    {
      "name": "ADAUSD",
      "count": 1980038,
      "latest_block": 2657092
    },
    {
      "name": "ADAEUR",
      "count": 1980038,
      "latest_block": 2657092
    },
    {
      "name": "ADABTC",
      "count": 1980038,
      "latest_block": 2657092
    }
  ]
}