Bitstamp
Redes Sociales
Volumen por Mercado
Mercado | Volumen | Volumen en USD | % |
---|---|---|---|
USD | 133.2M | 133.2M | 94.8% |
EUR | 5.3M | 6.2M | 4.4% |
GBP | 834.4mil | 1.1M | 0.8% |
1-3 de 3
Uso de la Biblioteca Coinsamba
Utilice la biblioteca Coinsamba para obtener estos datos en su sistema
1. Seleccione su gestor de paquetes e instale la biblioteca
npm install @coinsamba/js-exchanges-connector
2. Importe la biblioteca
import { bitstamp } from '@coinsamba/js-exchanges-connector'
3. Utilice los métodos disponibles
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);
}