mercado-bitcoin

0.0.5 • Public • Published

Build Status NPM version Code Climate Bitdeli Badge

Mercado Bitcoin API

This is a simple implementation of the www.mercado-bitcoin.com.ar JSON API written for nodejs.

Installation

Using npm:

$ npm [-g] install mercado-bitcoin

In Node.js:

var mb = require("mercado-bitcoin");

Synopsis

var amount, mercadoBitcoin, method;
 
mercadoBitcoin = require('../lib/mercado-bitcoin');
 
amount = 0.1;
method = 'convert_BTC_ARS_Last';
 
mercadoBitcoin.convert(method, amount, function (err, response) {
  console.log(response);
 });

API

mercadoBitcoin.last(method, symbol, callback(err[, response]))

Gets the latest price.

mercadoBitcoin.average(method, callback(err[, response]))

Gets the latest average price.

mercadoBitcoin.convert(method, amount, callback(err[, response]))

Gets the last convert between Bitcoins and Currency.

More API info:

For all available methods please visit: http://www.mercado-bitcoin.com.ar/documentation

Readme

Keywords

none

Package Sidebar

Install

npm i mercado-bitcoin

Weekly Downloads

1

Version

0.0.5

License

MIT

Last publish

Collaborators

  • colkito