Bitstamp
Reti Sociali
Volume per Mercato
Mercato | Volume | Volume in USD | % |
---|---|---|---|
USD | 80.3mln | 80.3mln | 84.7% |
EUR | 12.0mln | 14.1mln | 14.8% |
GBP | 352.7mila | 477.4mila | 0.5% |
1-3 di 3
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 { bitstamp } from '@coinsamba/js-exchanges-connector'
3. Utilizza i metodi disponibili
const exchange = new bitstamp();
// 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);
}