Blockchain.com · Schema

TickerEntry

Current BTC pricing in a single fiat currency.

CryptocurrencyBitcoinBlockchain DataExchangeMarket DataTradingPaymentsPublic APIs

Properties

Name Type Description
15m number 15-minute delayed market price.
last number Most recent market price.
buy number Current buy price.
sell number Current sell price.
symbol string Currency symbol (e.g. `$`, `€`, `£`).
View JSON Schema on GitHub

JSON Schema

charts-stats-ticker-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/blockchain/refs/heads/main/json-schema/charts-stats-ticker-entry-schema.json",
  "title": "TickerEntry",
  "description": "Current BTC pricing in a single fiat currency.",
  "type": "object",
  "properties": {
    "15m": {
      "type": "number",
      "description": "15-minute delayed market price.",
      "example": 1.0
    },
    "last": {
      "type": "number",
      "description": "Most recent market price.",
      "example": 1.0
    },
    "buy": {
      "type": "number",
      "description": "Current buy price.",
      "example": 1.0
    },
    "sell": {
      "type": "number",
      "description": "Current sell price.",
      "example": 1.0
    },
    "symbol": {
      "type": "string",
      "description": "Currency symbol (e.g. `$`, `\u20ac`, `\u00a3`).",
      "example": "BTC-USD"
    }
  }
}