Bitstamp
Reti Sociali
Volume per Mercato
Mercato | Volume | Volume in USD | % |
---|---|---|---|
USD | 134.0mln | 134.0mln | 85.5% |
EUR | 16.1mln | 18.9mln | 12.0% |
GBP | 2.9mln | 3.9mln | 2.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);
}