coinfalcon

1.0.7 • Public • Published

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

/coinfalcon/

    Package Sidebar

    Install

    npm i coinfalcon

    Weekly Downloads

    22

    Version

    1.0.7

    License

    MIT

    Unpacked Size

    74.9 kB

    Total Files

    32

    Last publish

    Collaborators

    • deviavir