Bitstamp
Réseaux sociaux
Volume par marché
Marché | Volume | Volume en USD | % |
---|---|---|---|
USD | 121.8M | 121.8M | 81.6% |
EUR | 22.5M | 26.5M | 17.8% |
GBP | 640.8k | 879.6k | 0.6% |
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);
}