Skip to main content
GET
GET /pairs

Description

Returns the full catalog of trading pairs Binibit offers, including base/quote metadata. Use it to discover which markets exist before calling /tickers, /orderbook, or /historical_trades. Unlike /tickers, this endpoint lists every configured pair, including those with zero 24-hour volume.

Parameters

This endpoint takes no query parameters.

Response

An object with a data.market_pairs array. Each element describes one pair.
array
required
Array of market pair objects.

Market pair object schema

string
required
Human-readable pair label in {base}/{quote} format, e.g. BTC/USDT.
string
required
Market category. Currently always spot.
object
required
Base asset descriptor with symbol (e.g. BTC) and type (e.g. cryptocurrency).
object
required
Quote asset descriptor with symbol (e.g. USDT) and type (e.g. cryptocurrency).

Example request

Example response

Notes

  • The pair label uses a / separator (BTC/USDT). Other endpoints identify pairs with ticker_id using an _ separator (BTC_USDT). See ticker_id format.
  • /pairs lists all configured markets; /tickers returns only pairs with live 24-hour volume.

Ticker statistics

24-hour price and volume for active pairs.

Order book

Bid/ask depth for a specific pair.