Bitstamp
Réseaux sociaux
Volume par marché
Marché | Volume | Volume en USD | % |
---|---|---|---|
USD | 345.6M | 345.6M | 91.2% |
EUR | 27.0M | 31.7M | 8.4% |
GBP | 1.3M | 1.8M | 0.5% |
1-3 de 3
Utilisation de la bibliothèque Coinsamba
Utilisez la bibliothèque Coinsamba pour obtenir ces données dans votre système
1. Sélectionnez votre gestionnaire de paquets et installez la bibliothèque
npm install @coinsamba/js-exchanges-connector
2. Importez la bibliothèque
import { bitstamp } from '@coinsamba/js-exchanges-connector'
3. Utilisez les méthodes 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);
}