Binance · Schema

ExchangeInfo

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
timezone string Server timezone, always UTC.
serverTime integer Current server time in milliseconds.
rateLimits array Rate limit rules for the exchange.
exchangeFilters array Exchange-level filters.
symbols array List of trading pair symbols and their rules.
View JSON Schema on GitHub

JSON Schema

binance-exchangeinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExchangeInfo",
  "title": "ExchangeInfo",
  "type": "object",
  "properties": {
    "timezone": {
      "type": "string",
      "description": "Server timezone, always UTC."
    },
    "serverTime": {
      "type": "integer",
      "format": "int64",
      "description": "Current server time in milliseconds."
    },
    "rateLimits": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/RateLimit"
      },
      "description": "Rate limit rules for the exchange."
    },
    "exchangeFilters": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Exchange-level filters."
    },
    "symbols": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SymbolInfo"
      },
      "description": "List of trading pair symbols and their rules."
    }
  }
}