KrakenKraken

Launch Year: 2011
Markets: 3
Pairs: 12
Assets: 4

Social Networks

Volume by Market
MarketVolumeUSD Volume%
USD216.4M216.4M
71.5%
EUR58.0M68.3M
22.5%
GBP13.3M18.2M
6.0%
1-3 of 3
Coinsamba Library Usage
Use the Coinsamba library to get these data in your system

1. Select your package manager and install the library

npm install @coinsamba/js-exchanges-connector

2. Import the library

import { kraken } from '@coinsamba/js-exchanges-connector'

3. Use the available methods

const exchange = new kraken();

// 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);
}