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 PricemaxPrice: String, max PricetickSize: String, tick SizestepSize: String, step SizemaxQty: String, max QuantityminQty: String, min Quantitylimit: Integer, limit of max num ordersminNotional: String, minimum of notionalmaxNotional: String, max of notionalmultiplierDown: String, lower bound multipliermultiplierUp: String, upper bound multiplierbidMultiplierUp: String, upper bound multiplier for bid (buy) pricesaskMultiplierUp: String, upper bound multiplier for ask (buy) pricesbidMultiplierDown: String, lower bound multiplier for bid priceaskMultiplierDown: String, lower bound multiplier for ask price
orderTypes: Array of strings, listing supported order types for the symbol, e.g., ["LIMIT"].