Skip to main content
GET
/
api
/
currencies
/
pairs
GET /api/currencies/pairs
curl --request GET \
  --url https://public-api.binibit.com/api/currencies/pairs
{
  "code": "<string>",
  "digitsPrice": 123,
  "digitsAmount": 123,
  "minQuoteAmount": {}
}

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.
code
string
required
Pair code in {base}_{target} format, e.g. AAVE_USDT.
digitsPrice
integer
required
Number of fractional digits to round the price to.
digitsAmount
integer
required
Number of fractional digits to round the order amount (base) to.
minQuoteAmount
decimal | null
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
  }
]