Exchanges
Exchanges are platforms where cryptocurrencies are traded, such as Binance, Coinbase, and PancakeSwap. We calculate the prices of coins based on the tickers coming from these exchanges.
GET /api/v1/exchanges/{id}
bashCopy codeGET /api/v1/exchanges/binancejsonCopy code{
"id": "binance",
"name": "Binance",
"volume_usd": 1250345.67,
"supported_coins": [
{
"id": "BTC",
"name": "Bitcoin",
"symbol": "BTC"
},
{
"id": "ETH",
"name": "Ethereum",
"symbol": "ETH"
}
],
"supported_pairs": [
{
"id": "BTC/USD",
"name": "Bitcoin/US Dollar",
"base_currency_id": "BTC",
"quote_currency_id": "USD",
"last_price": 50000.0,
"volume": 1234.56,
"price_change_percent_24h": 2.35
},
{
"id": "ETH/USD",
"name": "Ethereum/US Dollar",
"base_currency_id": "ETH",
"quote_currency_id": "USD",
"last_price": 1500.0,
"volume": 789.01,
"price_change_percent_24h": -1.75
}
],
"liquidity_score": 0.87,
"trust_score": 0.95
}Last updated