Skip to content

Asgaros/kraken-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kraken API

A client for the Kraken API based on Node.js

Installation:

Use the following command to add this package as a dependency to your project:

npm install git+https://github.com/Asgaros/kraken-api.git

Example:

const api_key = 'xxx';
const api_private_key = 'xxx';
const KrakenAPI = require('kraken-api');
const kraken = new KrakenAPI(api_key, api_private_key);

(async () => {
	console.log(await kraken.request('Balance'));
})();