Binance · Schema

PriceTicker

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
symbol string Trading pair symbol.
price string Current price.
View JSON Schema on GitHub

JSON Schema

binance-priceticker-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PriceTicker",
  "title": "PriceTicker",
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Trading pair symbol."
    },
    "price": {
      "type": "string",
      "description": "Current price."
    }
  }
}