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}
Returns data for a specific cryptocurrency exchange, including volume, supported coins, trading pairs, liquidity, and trust score.
Request parameters:
id: the ID of the exchange to retrieve data for (e.g. binance, coinbase)
Example request:
Example response:
supported_coins
An array of objects representing the coins supported by the exchange. Each object includes the following fields:
id: the ID of the coin (e.g. BTC for Bitcoin, ETH for Ethereum)
name: the name of the coin (e.g. Bitcoin, Ethereum)
symbol: the symbol of the coin (e.g. BTC, ETH)
supported_pairs
An array of objects representing the trading pairs supported by the exchange. Each object includes the following fields:
id: the ID of the trading pair (e.g. BTC/USD, ETH/USD)
name: the name of the trading pair (e.g. Bitcoin/US Dollar, Ethereum/US Dollar)
base_currency_id: the ID of the base currency (e.g. BTC for BTC/USD, ETH for ETH/USD)
quote_currency_id: the ID of the quote currency (e.g. USD for BTC/USD, USD for ETH/USD)
last_price: the last traded price for the trading pair
volume: the 24-hour trading volume for the trading pair
price_change_percent_24h: the percentage change in price over the last 24 hours
liquidity_score
A score indicating the liquidity of the exchange, ranging from 0.0 (low liquidity) to 1.0 (high liquidity).
trust_score
A score indicating the trustworthiness of the exchange, ranging from 0.0 (low trust) to 1.0 (high trust). The trust score is based on various factors such as security, user reviews, and regulatory compliance.Coming Soon!
Last updated