CryptoMarket
Reti Sociali
Volume per Mercato
Mercato | Volume | Volume in USD | % |
---|---|---|---|
BRL | 319.5mila | 58.5mila | 100.0% |
1-1 di 1
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 { cryptomarket } from '@coinsamba/js-exchanges-connector'
3. Utilizza i metodi disponibili
const exchange = new cryptomarket();
// 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);
}