next-stack / kraken-api

Kraken API Client for Node.JS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Node Kraken

NodeJS Client Library for the Kraken (kraken.com) API

This is an asynchronous node js client for the kraken.com API.

It exposes all the API methods found here: https://www.kraken.com/help/api through the 'api' method:

Example Usage:

var KrakenClient = require('kraken-api');
var kraken = new KrakenClient('api_key', 'api_secret');

// Display user's balance
kraken.api('Balance', null, function(error, data) {
    if(error) {
        console.log(error);
    }
    else {
        console.log(data.result);
    }
});

// Get Ticker Info
kraken.api('Ticker', {"pair": 'XBTCXLTC'}, function(error, data) {
    if(error) {
        console.log(error);
    }
    else {
        console.log(data.result);
    }
});

Credit:

This is a fork of the npm-kraken-api project including my own modifications: https://github.com/nothingisdead/npm-kraken-api

About

Kraken API Client for Node.JS

License:MIT License


Languages

Language:TypeScript 56.0%Language:JavaScript 44.0%