> ## 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.

# GET /api/currencies/pairs

> Trading pair settings: rounding precision and minimum order amounts.

## 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.

<ResponseField name="code" type="string" required>
  Pair code in `{base}_{target}` format, e.g. `AAVE_USDT`.
</ResponseField>

<ResponseField name="digitsPrice" type="integer" required>
  Number of fractional digits to round the **price** to.
</ResponseField>

<ResponseField name="digitsAmount" type="integer" required>
  Number of fractional digits to round the order **amount** (base) to.
</ResponseField>

<ResponseField name="minQuoteAmount" type="decimal | null">
  Minimum order size measured in target (quote) currency. `null` if no minimum is configured.
</ResponseField>

## Example request

```bash theme={null}
curl https://public-api.binibit.com/api/currencies/pairs
```

## Example response

```json theme={null}
[
  {
    "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
  }
]
```
