Bitstamp
Réseaux sociaux
Volume par marché
| Marché | Volume | Volume en USD | % |
|---|---|---|---|
| USD | 301.5M | 301.5M | 93.0% |
| EUR | 18.0M | 20.7M | 6.4% |
| GBP | 1.4M | 1.8M | 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-connector2. 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);
}