Binance
Volume par marché
Marché | Volume | Volume en USD | % |
---|---|---|---|
ARS | 3.1Md | 336.4Bn | 100.0% |
USDT | 10.0Md | 10.0Md | 0.0% |
USDC | 1.8Md | 1.8Md | 0.0% |
BTC | 1.3k | 146.0M | 0.0% |
EUR | 84.7M | 99.9M | 0.0% |
BRL | 373.9M | 68.6M | 0.0% |
ETH | 8.3k | 21.4M | 0.0% |
SOL | 13.9k | 2.2M | 0.0% |
BNB | 3.1k | 2.1M | 0.0% |
MXN | 28.1M | 1.5M | 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);
}