Binance
Volume par Marché
| Marché | Volume | Volume en USD | % |
|---|---|---|---|
| ARS | 2.2Md | 154.3Bn | 100.0% |
| USDT | 6.0Md | 6.0Md | 0.0% |
| USDC | 1.2Md | 1.2Md | 0.0% |
| BTC | 1.3k | 94.8M | 0.0% |
| BRL | 396.9M | 75.7M | 0.0% |
| EUR | 49.7M | 57.6M | 0.0% |
| USD | 33.2M | 33.2M | 0.0% |
| ETH | 11.6k | 24.8M | 0.0% |
| MXN | 43.2M | 2.4M | 0.0% |
| BNB | 2.4k | 1.6M | 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);
}