Binance
Volume par marché
| Marché | Volume | Volume en USD | % |
|---|---|---|---|
| ARS | 4.0Md | 415.1Bn | 100.0% |
| USDT | 13.6Md | 13.6Md | 0.0% |
| USDC | 2.3Md | 2.4Md | 0.0% |
| BTC | 1.8k | 181.5M | 0.0% |
| EUR | 108.2M | 124.6M | 0.0% |
| BRL | 509.3M | 94.9M | 0.0% |
| ETH | 12.7k | 42.8M | 0.0% |
| MXN | 22.0M | 1.2M | 0.0% |
| SOL | 5.5k | 872.3k | 0.0% |
| TUSD | 530.2k | 530.2k | 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-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);
}