Binance · Schema

FuturesTicker24hr

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
symbol string Symbol.
priceChange string Price change.
priceChangePercent string Price change percent.
weightedAvgPrice string Weighted average price.
lastPrice string Last price.
lastQty string Last quantity.
openPrice string Open price.
highPrice string High price.
lowPrice string Low price.
volume string Total traded base asset volume.
quoteVolume string Total traded quote asset volume.
openTime integer Statistics open time.
closeTime integer Statistics close time.
firstId integer First trade ID.
lastId integer Last trade ID.
count integer Number of trades.
View JSON Schema on GitHub

JSON Schema

binance-futuresticker24hr-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FuturesTicker24hr",
  "title": "FuturesTicker24hr",
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Symbol."
    },
    "priceChange": {
      "type": "string",
      "description": "Price change."
    },
    "priceChangePercent": {
      "type": "string",
      "description": "Price change percent."
    },
    "weightedAvgPrice": {
      "type": "string",
      "description": "Weighted average price."
    },
    "lastPrice": {
      "type": "string",
      "description": "Last price."
    },
    "lastQty": {
      "type": "string",
      "description": "Last quantity."
    },
    "openPrice": {
      "type": "string",
      "description": "Open price."
    },
    "highPrice": {
      "type": "string",
      "description": "High price."
    },
    "lowPrice": {
      "type": "string",
      "description": "Low price."
    },
    "volume": {
      "type": "string",
      "description": "Total traded base asset volume."
    },
    "quoteVolume": {
      "type": "string",
      "description": "Total traded quote asset volume."
    },
    "openTime": {
      "type": "integer",
      "format": "int64",
      "description": "Statistics open time."
    },
    "closeTime": {
      "type": "integer",
      "format": "int64",
      "description": "Statistics close time."
    },
    "firstId": {
      "type": "integer",
      "format": "int64",
      "description": "First trade ID."
    },
    "lastId": {
      "type": "integer",
      "format": "int64",
      "description": "Last trade ID."
    },
    "count": {
      "type": "integer",
      "description": "Number of trades."
    }
  }
}