Skip to main content
WhiteBIT organizes trading around market pairs — combinations of a base asset and a quote asset, written as BASE_QUOTE (for example, BTC_USDT). The base asset (left side) is what gets bought or sold. The quote asset (right side) is what gets paid with.

Market types

WhiteBIT supports three market types, each using different account balances and leverage settings.
TypePairsBalanceLeverageExample
Spot750+TradeNone (1×)BTC_USDT
MarginSpot pairsCollateralUp to 10×BTC_USDT
Futures270+ perpetualsCollateralUp to 100×BTC_PERP
Spot — Direct buy/sell. Orders execute against the spot orderbook. Funds held in the Trade balance. Margin — Leveraged trading on spot pairs with up to 10× leverage. Pair names are identical to spot (e.g., BTC_USDT). Funds held in the Collateral balance. Isolated margin mode available. Futures — Perpetual contracts with up to 100× leverage. Pairs use the _PERP suffix (e.g., BTC_PERP). Funds held in the Collateral balance. Hedge Mode allows simultaneous long and short positions.
API naming convention: WhiteBIT’s API uses “collateral” endpoints for both Margin and Futures trading. The market pair determines the product: spot pairs (e.g., BTC_USDT) for Margin, perpetual pairs (e.g., BTC_PERP) for Futures. All endpoints under /api/v4/order/collateral/ and /api/v4/collateral-account/ serve both products.

How to fetch market info

Public endpoints — no authentication required:
  • Spot + Margin markets: GET /api/v4/public/marketsAPI Reference
  • Futures markets: GET /api/v4/public/futuresAPI Reference

Key market fields

Each market returned by GET /api/v4/public/markets includes:
FieldDescription
stockBase asset ticker (e.g., BTC)
moneyQuote asset ticker (e.g., USDT)
minAmountMinimum order quantity in the base asset
minTotalMinimum order total in the quote asset
makerFeeDefault maker fee rate (decimal)
takerFeeDefault taker fee rate (decimal)
tradesEnabledWhether trading is active on the pair
stockPrecMaximum decimal places for base asset quantity
moneyPrecMaximum decimal places for quote asset amount

Market statuses

The tradesEnabled field indicates whether a market is actively accepting orders. Markets can be temporarily disabled by the platform without prior notice. For platform-wide maintenance status, call GET /api/v4/public/platform/statusAPI Reference.

What’s Next

Order Types

Learn about the 7 order types available on WhiteBIT.

Balances & Transfers

Understand Main, Trade, and Collateral account types.

Market Data Quickstart

Fetch live prices and orderbooks — no auth required.