get
https://api.liquiditytech.com/api/v1/trading/sym/info
Description
Returns detailed configuration and trading rules for all supported trading pairs across multiple exchanges. This endpoint is essential for retrieving market-specific constraints like precision, minimum notional values, and leverage limits.
Rate Limit
3 requests per 10 seconds
Permission
Requires Read authentication level.
Request
| Field | Type | Mandatory | Description |
|---|---|---|---|
| sym | String | N | Trading pair unique identifier. If omitted, the system returns all supported symbols. Examples: BINANCE_SPOT_BTC_USDT, BINANCE_PERP_BTC_USDT, EDX_PERP_BTC_USDT. |
Response
| Field | Type | Description |
|---|---|---|
| sym | String | Internal unique identifier for the trading pair. |
| originalSymbol | String | The native symbol name as defined by the source exchange (e.g., IMXUSDT). |
| state | String | Operational status: live or suspend. |
| pricePrecision | String | Number of decimal places allowed for price. |
| qtyPrecision | String | Number of decimal places allowed for quantity. |
| lotSize | String | The minimum increment of trading quantity. |
| tickSize | String | The minimum price movement (step size). |
| minNotional | String | Minimum allowed order value (Price × Quantity). |
| maxLimitSize | String | Maximum quantity allowed for a Limit Order. |
| maxMarketSize | String | Maximum quantity allowed for a Market Order. |
| maxNumOrders | String | Maximum number of open orders allowed for this symbol. |
| minSize | String | Minimum allowed trading quantity. |
| contractSize | String | Value represented by one contract (Perpetual/Futures only). |
| defaultLeverage | String | Default leverage setting for the symbol (Perpetual/Futures only). |
| safeLeverage | String | Maximum leverage (Perpetual/Futures only). |
| liquidationFee | String | The fee rate applied during a liquidation event. |
