Binance · Schema

Ticker24hr

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
symbol string Trading pair symbol.
priceChange string Price change over the period.
priceChangePercent string Price change percentage.
weightedAvgPrice string Weighted average price.
prevClosePrice string Previous close price.
lastPrice string Last trade price.
lastQty string Last trade quantity.
bidPrice string Best bid price.
bidQty string Best bid quantity.
askPrice string Best ask price.
askQty string Best ask quantity.
openPrice string Open price.
highPrice string High price.
lowPrice string Low price.
volume string Base asset volume.
quoteVolume string Quote asset volume.
openTime integer Statistics open time in milliseconds.
closeTime integer Statistics close time in milliseconds.
firstId integer First trade ID.
lastId integer Last trade ID.
count integer Total number of trades.
View JSON Schema on GitHub

JSON Schema

binance-ticker24hr-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Ticker24hr",
  "title": "Ticker24hr",
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Trading pair symbol."
    },
    "priceChange": {
      "type": "string",
      "description": "Price change over the period."
    },
    "priceChangePercent": {
      "type": "string",
      "description": "Price change percentage."
    },
    "weightedAvgPrice": {
      "type": "string",
      "description": "Weighted average price."
    },
    "prevClosePrice": {
      "type": "string",
      "description": "Previous close price."
    },
    "lastPrice": {
      "type": "string",
      "description": "Last trade price."
    },
    "lastQty": {
      "type": "string",
      "description": "Last trade quantity."
    },
    "bidPrice": {
      "type": "string",
      "description": "Best bid price."
    },
    "bidQty": {
      "type": "string",
      "description": "Best bid quantity."
    },
    "askPrice": {
      "type": "string",
      "description": "Best ask price."
    },
    "askQty": {
      "type": "string",
      "description": "Best ask quantity."
    },
    "openPrice": {
      "type": "string",
      "description": "Open price."
    },
    "highPrice": {
      "type": "string",
      "description": "High price."
    },
    "lowPrice": {
      "type": "string",
      "description": "Low price."
    },
    "volume": {
      "type": "string",
      "description": "Base asset volume."
    },
    "quoteVolume": {
      "type": "string",
      "description": "Quote asset volume."
    },
    "openTime": {
      "type": "integer",
      "format": "int64",
      "description": "Statistics open time in milliseconds."
    },
    "closeTime": {
      "type": "integer",
      "format": "int64",
      "description": "Statistics close time in milliseconds."
    },
    "firstId": {
      "type": "integer",
      "format": "int64",
      "description": "First trade ID."
    },
    "lastId": {
      "type": "integer",
      "format": "int64",
      "description": "Last trade ID."
    },
    "count": {
      "type": "integer",
      "description": "Total number of trades."
    }
  }
}