Binance
Volume par Marché
| Marché | Volume | Volume en USD | % |
|---|---|---|---|
| ARS | 3.5Md | 215.9Bn | 100.0% |
| USDT | 6.8Md | 6.8Md | 0.0% |
| USDC | 1.2Md | 1.2Md | 0.0% |
| BRL | 593.6M | 112.5M | 0.0% |
| USD | 82.5M | 82.5M | 0.0% |
| BTC | 1.2k | 71.8M | 0.0% |
| EUR | 53.3M | 60.5M | 0.0% |
| ETH | 19.1k | 30.9M | 0.0% |
| MXN | 34.0M | 1.9M | 0.0% |
| BNB | 2.0k | 1.1M | 0.0% |
1-10 de 27
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-connector2. 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);
}