Binance · Schema

Balance

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
asset string Asset symbol.
free string Available balance.
locked string Locked balance (in open orders).
View JSON Schema on GitHub

JSON Schema

binance-balance-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Balance",
  "title": "Balance",
  "type": "object",
  "properties": {
    "asset": {
      "type": "string",
      "description": "Asset symbol."
    },
    "free": {
      "type": "string",
      "description": "Available balance."
    },
    "locked": {
      "type": "string",
      "description": "Locked balance (in open orders)."
    }
  }
}