Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

coinfalcon

deviavir348MIT1.0.7

Simple API client for the Coinfalcon exchange

coinfalcon, coinfalcon.com, exchange, crypto, btc, eth, iota, eur

readme

Coinfalcon Build Status Greenkeeper badge

With this Node module you can plug into the no-fees and fast Coinfalcon.

Installation

npm install coinfalcon --save

Getting Started

First you need to sign-up for a Coinfalcon account and obtain your unique API Key and API Secret. You will find both under API. Once you have set up your account, you can start using Coinfalcon's API client in your applications. You can find all API calls and parameters on Coinfalcon's API documentation page.

Example requests

import { Client } from 'coinfalcon'

const coinfalconClient = new Client('KEY', 'SECRET');
coinfalconClient.get('markets/BTC-EUR/trades').then(res => {
  console.log('fetched!', res);
}).catch(err => {
  console.log('Whoops, something went wrong!', err);
});
import { Client } from 'coinfalcon'

const coinfalconClient = new Client('KEY', 'SECRET');
coinfalconClient.get('user/orders', {'market': 'BTC-EUR'}).then(res => {
  console.log('fetched!', res);
}).catch(err => {
  console.log('Whoops, something went wrong!', err);
});