Binance · Schema

BookTicker

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
symbol string Trading pair symbol.
bidPrice string Best bid price.
bidQty string Best bid quantity.
askPrice string Best ask price.
askQty string Best ask quantity.
View JSON Schema on GitHub

JSON Schema

binance-bookticker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BookTicker",
  "title": "BookTicker",
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Trading pair symbol."
    },
    "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."
    }
  }
}