Bitso
Volume per Mercato
Mercato | Volume | Volume in USD | % |
---|---|---|---|
ARS | 57.9mln | 6.2bln | 100.0% |
MXN | 185.5mln | 9.9mln | 0.0% |
USD | 2.1mln | 2.1mln | 0.0% |
BRL | 2.7mln | 501.7mila | 0.0% |
1-4 di 4
Uso della libreria Coinsamba
Utilizza la libreria Coinsamba per ottenere questi dati nel tuo sistema
1. Seleziona il tuo gestore di pacchetti e installa la libreria
npm install @coinsamba/js-exchanges-connector
2. Importa la libreria
import { bitso } from '@coinsamba/js-exchanges-connector'
3. Utilizza i metodi disponibili
const exchange = new bitso();
// 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);
}