bitcoin-de-api

0.0.5 • Public • Published

bitcoin-de-api

A (very) simple javascript wrapper for the (very) simple bitcoin.de api.

NPM

Install

npm install --save bitcoin-de-api

Run tests

npm run test

Test runs will have different outputs depending on whether or not an API_KEY was set in .env (see 'Usage' below).

Usage

Create a .env file at the root of your project and add your API_KEY:

API_KEY=your_api_key_goes_here_without_quotes

Add .env to your .gitignore file! It's a secret, right?! See dotenv if you are not sure what I am talking about.

const api = require('bitcoin-de-api')
const dotenv = require('dotenv')
 
dotenv.config() // parses .env and sets environnment variables
const apiKey = process.env.API_KEY
 
api.getTrades(apiKey, since) // since parameter is optional
  .then(data => {
    // do stuff with the data here
    console.log(data)
  })
  .catch( err => {
    console.error(err)
  })

API

method returns
getTrades() promise
getOrderBook() promise
getRate() promise

Copyright and license

Copyright 2016 Matthias Munder.
Licensed under the MIT license.

js-standard-style

Readme

Keywords

Package Sidebar

Install

npm i bitcoin-de-api

Weekly Downloads

1

Version

0.0.5

License

MIT

Last publish

Collaborators

  • mcmunder