coinfalcon

Simple API client for the Coinfalcon exchange

Usage no npm install needed!

<script type="module">
  import coinfalcon from 'https://cdn.skypack.dev/coinfalcon';
</script>

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