API Documentation

GET/api/1/crypto-extended/coin-tickers/{coinId}

Coin Tickers API

Returns all trading pairs for a cryptocurrency across all exchanges, with price, volume, spread, and trust score

Parameters

2
exchangestring
query

Filter by exchange ID (e.g. binance)

coinIdstringrequired
path

CoinGecko coin ID (e.g. bitcoin, ethereum)

Responses

Was this helpful?
Request
curl -X GET \
  'https://api.eulerpool.com/api/1/crypto-extended/coin-tickers/{coinId}?exchange=XNAS' \
  -H 'Accept: application/json'
200 Response
[
  {
  "exchange_id": "binance",
  "base": "BTC",
  "target": "USDT",
  "last_price": 0,
  "volume": 0,
  "converted_volume_usd": 0,
  "bid_ask_spread": 0,
  "trust_score": "string",
  "trade_url": "string"
}
]