Pairs (Exchange Rates)

Pairs in the Busha API represent the exchange rates between two currencies. This can be any of the following exchanges:

  • fiat-to-fiat

  • fiat-to-crypto

  • crypto-to-crypto

Pairs resource allows you to anticipate the following about a currency pair:

  • current buy/sell price

  • minimum and maximum buy/sell amount

  • buy/sell supported

  • floating point decimal for the base and target currency

A single pair object looks like this:

{
      "id": "ETHUSDT",
      "base": "ETH",
      "counter": "USDT",
      "type": "crypto",
      "buy_price": {
        "amount": "2686.63",
        "currency": "ETH"
      },
      "sell_price": {
        "amount": "2686.58",
        "currency": "USDT"
      },
      "is_buy_supported": true,
      "is_sell_supported": true,
      "min_buy_amount": {
        "amount": "0.00447",
        "currency": "ETH"
      }

List PairsCopied!

To list all pairs, you can make an unauthenticated request to the Pairs endpoint:

curl https://api.busha.co/v1/pairs

Filter Pairs by TypeCopied!

The pairs API allows filtering the list of pairs by types. The three allowed filter types values are;

  • fiat

  • crypto

  • stablecoins

Here is an example of filter by type:

curl https://api.busha.cov1/pairs?type=crypto

Filter Pairs by CurrencyCopied!

You can also filter pairs by any of the supported currencies on the Busha API.

curl https://api.busha.co/v1/pairs?currency=NGN

Filter by Type and CurrencyCopied!

Combining the two examples above you can filter for all fiat pairs type for NGN currency like so:

curl https://api.busha.co/v1/pairs?currency=NGN&type=fiat