1.0.0 • Published 7 years ago

nl-kraken v1.0.0

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

Kraken API api

About

My own API Library for Kraken. Reference library here

Installing

Not available yet.

Contributing

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)

Examples

Get Market Depth / Order Book

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

Get Market Depth (BTC/EUR)

i.public({endpoint: 'AssetPairs', method: "GET"}, (r) => {console.log(JSON.stringify(r))});