Get Symbol Info
HTTP Request Get trading pair information, supporting individual, multiple, and full queries
- GET /api/v2/public/exchangeInfo
Weight(IP): 10
Request parameters
| Parameter | Parameter type | Required? | Description | 
|---|---|---|---|
| symbol | String | No | Trading pair name, e.g. BTCUSDT_SPBL | 
| symbols | String | No | Multiple trading pair names,e.g. BTCUSDT_SPBL,ETHUSDC_SPBL | 
Request example
curl "https://api-spot.weex.com/api/v2/public/exchangeInfo?symbol=BTCUSDT_SPBL"
curl "https://api-spot.weex.com/api/v2/public/exchangeInfo?symbols=BTCUSDT_SPBL,ETHUSDC_SPBL"
Response parameters
| Field Name | Type | Field Description | 
|---|---|---|
| symbol | String | Trading pair | 
| baseCoin | String | Base currency | 
| quoteCoin | String | Quote currency | 
| tickSize | String | Minimum price increment (for quoteCoin) | 
| stepSize | String | Minimum quantity increment (for baseCoin) | 
| minTradeAmount | String | Minimum trade amount | 
| maxTradeAmount | String | Maximum trade amount | 
| takerFeeRate | String | Taker fee rate | 
| makerFeeRate | String | Maker fee rate | 
| buyLimitPriceRatio | String | Buy limit price ratio | 
| sellLimitPriceRatio | String | Sell limit price ratio | 
| marketBuyLimitSize | String | Market order buy size limit | 
| marketSellLimitSize | String | Market order sell size limit | 
| marketFallbackPriceRatio | String | Market order fallback price ratio | 
| enableTrade | Boolean | Whether trading is enabled | 
| enableDisplay | Boolean | Whether display is enabled | 
| displayDigitMerge | String | Depth aggregation (e.g.: "1,0.1,0.001") | 
| displayNew | Boolean | Whether newly listed pair | 
| displayHot | Boolean | Whether hot trading pair | 
| supportTracing | Boolean | Whether copy trading is supported | 
| supportPlanMarket | Boolean | Whether market orders are supported in conditional orders | 
Response example
{
  "code": "00000",
  "msg": "success",
  "requestTime": 1743661516052,
  "data": [
    {
      "symbol": "BTCUSDT_SPBL",
      "baseCoin": "BTC",
      "quoteCoin": "USDT",
      "tickSize": "0.1",
      "stepSize": "0.00000001",
      "minTradeAmount": "0.00001",
      "maxTradeAmount": "99999",
      "takerFeeRate": "0.001",
      "makerFeeRate": "0",
      "buyLimitPriceRatio": "0.99",
      "sellLimitPriceRatio": "0.99",
      "marketBuyLimitSize": "99999",
      "marketSellLimitSize": "99999",
      "marketFallbackPriceRatio": "0",
      "enableTrade": true,
      "enableDisplay": true,
      "displayDigitMerge": "",
      "displayNew": false,
      "displayHot": false,
      "supportTracing": true,
      "supportPlanMarket": true
    }
  ]
}