Documentation Index
Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
Use this file to discover all available pages before exploring further.
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.
Pair code in {base}_{target} format, e.g. AAVE_USDT.
Number of fractional digits to round the price to.
Number of fractional digits to round the order amount (base) to.
Minimum order size measured in target (quote) currency. null if no minimum is configured.
Example request
curl https://public-api.binibit.com/api/currencies/pairs
Example response
[
{
"code": "AAVE_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
},
{
"code": "ARB_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
},
{
"code": "ASTER_USDT",
"digitsPrice": 8,
"digitsAmount": 8,
"minQuoteAmount": null
}
]