nl-kraken
v1.0.0
Published
My Kraken Node.js library
Readme
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))});