Binance
Volume par marché
Marché | Volume | Volume en USD | % |
---|---|---|---|
ARS | 2.4Md | 280.3Bn | 100.0% |
USDT | 11.9Md | 11.9Md | 0.0% |
USDC | 3.6Md | 3.7Md | 0.0% |
BTC | 1.6k | 181.5M | 0.0% |
EUR | 76.5M | 89.6M | 0.0% |
ETH | 13.5k | 60.8M | 0.0% |
BRL | 325.6M | 60.3M | 0.0% |
SOL | 22.2k | 5.3M | 0.0% |
MXN | 17.9M | 970.9k | 0.0% |
TUSD | 699.4k | 699.4k | 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);
}