Skip to main content

Get Exchange Info

Endpoint: /bapi/defi/v1/public/alpha-trade/get-exchange-info

Full URL

https://www.binance.com/bapi/defi/v1/public/alpha-trade/get-exchange-info

Description

Fetches general exchange information, such as supported symbols, rate limits, and server time.

Parameters

None

Response Structure

  • code: String, the API response code. Here, "000000" indicates success.
  • message: Null, generally used for returning informational messages.
  • messageDetail: Null, usually for more detailed messages or error descriptions.
  • success: Boolean, indicates whether the API call was successful (true).
  • data: Object, containing trading and asset related information:
    • timezone: String, representing the timezone of the trading data, e.g., "UTC".
    • assets: Array of objects, each with fields:
      • asset: String, the asset symbol, e.g., "USDT".
    • symbols: Array of objects, each representing a trading symbol or pair with fields:
      • symbol: String, trading pair name, e.g., "ALPHA_105USDT".
      • status: String, trading status of the symbol, e.g., "TRADING".
      • baseAsset: String, base asset of the trading pair, e.g., "ALPHA_105".
      • quoteAsset: String, quote asset of the trading pair, e.g., "USDT".
      • pricePrecision: Integer, number of decimals allowed for the price.
      • quantityPrecision: Integer, number of decimals allowed for quantity.
      • baseAssetPrecision: Integer, precision of the base asset.
      • quotePrecision: Integer, precision of the quote asset.
      • filters: Array of objects, each representing trading rules or constraints with common fields:
        • filterType: String, type of filter (e.g., "PRICE_FILTER", "LOT_SIZE", "MIN_NOTIONAL").
        • minPrice: String, min Price
        • maxPrice: String, max Price
        • tickSize: String, tick Size
        • stepSize: String, step Size
        • maxQty: String, max Quantity
        • minQty: String, min Quantity
        • limit: Integer, limit of max num orders
        • minNotional: String, minimum of notional
        • maxNotional: String, max of notional
        • multiplierDown: String, lower bound multiplier
        • multiplierUp: String, upper bound multiplier
        • bidMultiplierUp: String, upper bound multiplier for bid (buy) prices
        • askMultiplierUp: String, upper bound multiplier for ask (buy) prices
        • bidMultiplierDown: String, lower bound multiplier for bid price
        • askMultiplierDown: String, lower bound multiplier for ask price
      • orderTypes: Array of strings, listing supported order types for the symbol, e.g., ["LIMIT"].