API Documentation

GET/api/1/crypto-extended/symbol-map

Binance Symbol Map API

Returns the mapping between Binance trading pair symbols and internal crypto identifiers. Useful for resolving which pairs are available and their trading status.

Parameters

3
statusstring
query

Filter by trading status (e.g. TRADING)

basestring
query

Filter by base asset (e.g. BTC, ETH)

quotestring
query

Filter by quote asset (e.g. USDT, BTC)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/crypto-extended/symbol-map' \
  -H 'Accept: application/json'
200 Response
[
  {
  "binance_symbol": "BTCUSDT",
  "base_asset": "BTC",
  "quote_asset": "USDT",
  "identifier": "BTC",
  "status": "TRADING"
}
]