Bitstamp
Reti Sociali
Volume per Mercato
Mercato | Volume | Volume in USD | % |
---|---|---|---|
USD | 401.4mln | 401.4mln | 92.2% |
EUR | 27.0mln | 31.4mln | 7.2% |
GBP | 1.8mln | 2.4mln | 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);
}