GET

/api/v1/exchanges/market_pairs

Permission: NONESecurity: NONE

Returns the list of trading pairs supported by the specified exchange in Quentrade format.

Query Parameters

market_codestring required

Unique exchange code in the Quentrade system (e.g. binance, okx, bybit). Use the Supported markets list endpoint to retrieve valid codes.

Example Request

GET/api/v1/exchanges/market_pairs?market_code=binance

Response Parameters

array[string]

Returns an array of strings representing all trading pair tickers supported on the given exchange in Quentrade format (QUOTE_BASE).

Example Responses

all_market_pairs_response.json
200 OK
[
  "BTC_ETH",
  "BTC_LTC",
  "BTC_BNB",
  "BTC_NEO",
  "ETH_QTUM",
  "ETH_EOS",
  "ETH_SNT",
  "ETH_BNT",
  "BTC_GAS",
  "ETH_BNB",
  "USDT_BTC"
]