Blockchain.com · JSON Structure

Com Exchange Ticker Snapshot Payload Structure

ExchangeTickerSnapshotPayload schema from Blockchain.com WebSocket APIs

Type: object Properties: 7 Required: 4
CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

ExchangeTickerSnapshotPayload is a JSON Structure definition published by Blockchain.com, describing 7 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

seqnum event channel symbol price_24h volume_24h last_trade_price

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-structure/com-exchange-ticker-snapshot-payload-structure.json",
  "name": "ExchangeTickerSnapshotPayload",
  "description": "ExchangeTickerSnapshotPayload schema from Blockchain.com WebSocket APIs",
  "type": "object",
  "properties": {
    "seqnum": {
      "type": "int32"
    },
    "event": {
      "type": "string",
      "const": "snapshot"
    },
    "channel": {
      "type": "string",
      "const": "ticker"
    },
    "symbol": {
      "type": "string"
    },
    "price_24h": {
      "type": "double"
    },
    "volume_24h": {
      "type": "double"
    },
    "last_trade_price": {
      "type": "double"
    }
  },
  "required": [
    "seqnum",
    "event",
    "channel",
    "symbol"
  ]
}