Binance
Volume par Marché
| Marché | Volume | Volume en USD | % |
|---|---|---|---|
| ARS | 2.4Md | 159.4Bn | 100.0% |
| USDT | 5.9Md | 5.9Md | 0.0% |
| USDC | 1.2Md | 1.2Md | 0.0% |
| BTC | 1.6k | 107.2M | 0.0% |
| EUR | 57.5M | 67.7M | 0.0% |
| BRL | 329.2M | 64.1M | 0.0% |
| ETH | 9.8k | 18.8M | 0.0% |
| USD | 18.3M | 18.3M | 0.0% |
| MXN | 39.8M | 2.3M | 0.0% |
| BNB | 3.4k | 2.0M | 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);
}