GET
/
exchanges
/
{exchange_id}
/
markets
CLI
curl --request GET \
--url 'https://api.coinpaprika.com/v1/exchanges/binance/markets'
[
  {
    "pair": "BTC/USDT",
    "base_currency_id": "btc-bitcoin",
    "base_currency_name": "Bitcoin",
    "quote_currency_id": "usdt-tether",
    "quote_currency_name": "Tether",
    "market_url": "https://www.binance.com/en/trade/BTC_USDT",
    "category": "Spot",
    "fee_type": "Percentage",
    "outlier": false,
    "reported_volume_24h_share": 30.29,
    "quotes": {
      "$KEY": {
        "price": 4582.6967796728,
        "volume_24h": 229658776.19514218
      }
    },
    "last_updated": "2018-11-14T07:20:41Z"
  }
]

Path Parameters

exchange_id
string
required
Example:

"binance"

Query Parameters

quotes
string
default:USD

Comma separated list of quotes to return. Currently allowed values: BTC, ETH, USD, EUR, PLN, KRW, GBP, CAD, JPY, RUB, TRY, NZD, AUD, CHF, UAH, HKD, SGD, NGN, PHP, MXN, BRL, THB, CLP, CNY, CZK, DKK, HUF, IDR, ILS, INR, MYR, NOK, PKR, SEK, TWD, ZAR, VND, BOB, COP, PEN, ARS, ISK

Example:

"USD,BTC"

Response

200
application/json

successful operation

The response is of type object[].