Binance
Volume par marché
Marché | Volume | Volume en USD | % |
---|---|---|---|
ARS | 4.2Md | 447.7Bn | 100.0% |
USDT | 19.6Md | 19.6Md | 0.0% |
USDC | 3.8Md | 3.9Md | 0.0% |
BTC | 3.3k | 357.5M | 0.0% |
EUR | 194.8M | 227.1M | 0.0% |
BRL | 622.5M | 114.9M | 0.0% |
ETH | 18.5k | 71.1M | 0.0% |
SOL | 32.1k | 6.0M | 0.0% |
MXN | 34.9M | 1.9M | 0.0% |
COP | 4.0Md | 1.0M | 0.0% |
1-10 de 25
Utilisation de la bibliothèque Coinsamba
Utilisez la bibliothèque Coinsamba pour obtenir ces données dans votre système
1. Sélectionnez votre gestionnaire de paquets et installez la bibliothèque
npm install @coinsamba/js-exchanges-connector
2. Importez la bibliothèque
import { binance } from '@coinsamba/js-exchanges-connector'
3. Utilisez les méthodes disponibles
const exchange = new binance();
// check if this method is available
const canGetAllTickers = exchange.hasAllTickers;
if (canGetAllTickers) {
const tickers = await exchange.getAllTickers();
// do something with the tickers
console.log(tickers);
}