GET /api/currencies/pairs
Market Data
GET /api/currencies/pairs
Trading pair settings: rounding precision and minimum order amounts.
GET
GET /api/currencies/pairs
Description
Returns the list of all trading pairs supported by the exchange together with their formatting rules — how many decimal digits to use for price and amount, and the minimum allowed order size. Use this endpoint when:- Validating user input on a trading form (clamp to
digitsPrice/digitsAmount) - Determining whether an order meets the minimum size
- Listing all pairs without their live ticker data
Parameters
This endpoint takes no query parameters.Response
Array of pair-setting objects.string
required
Pair code in
{base}_{target} format, e.g. AAVE_USDT.integer
required
Number of fractional digits to round the price to.
integer
required
Number of fractional digits to round the order amount (base) to.
decimal | null
Minimum order size measured in target (quote) currency.
null if no minimum is configured.