My own API Library for Kraken. Reference library here
npm i nl-kraken
All contributions are welcome and appreciated. Open Source is a meritocracy who doesn't care who you are.
Issues Pull Requests Donations (BTC: 14qd36n1viYAWzajZgaTQq4tPUZcEUtfcz / LTC: LSGfxUoJSC3qYsTC6DwyvKvYfDwTVXrcE2 / Dollars)
- Private API functions
Examples, ETHEUR, BTCEUR, ETCEUR
i.public({endpoint: 'Depth', pair: 'BTCEUR'}, (r) => {console.log(JSON.stringify(r))});
i.public({endpoint: 'Depth', pair: 'ETHEUR'}, (r) => {console.log(JSON.stringify(r))});
i.public({endpoint: 'Depth', pair: 'ETCEUR'}, (r) => {console.log(JSON.stringify(r))});
i.public({endpoint: 'Depth', pair: 'DASHEUR'}, (r) => {console.log(JSON.stringify(r))});
i.public({endpoint: 'AssetPairs', method: "GET"}, (r) => {console.log(JSON.stringify(r))});