Bitstamp
Redes Sociales
Volumen por Mercado
Mercado | Volumen | Volumen en USD | % |
---|---|---|---|
USD | 94.0M | 94.0M | 84.9% |
EUR | 12.9M | 15.2M | 13.7% |
GBP | 1.1M | 1.5M | 1.4% |
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);
}