@lomelidev/bitso-api

1.0.1 • Public • Published

Bitso-Node

N|Solid

npm install @lomelidev/bitso-api

A Node.js API Wrapper for the Bitso REST API. Please refer to their documentation for the responses and parameters.

var BitsoNode = require("@lomelidev/bitso-api");
// Key and Secret are only necessary if you use the Private REST API
var bitsoClient = new BitsoNode({
  key: "1234",
  secret: "secret"
});

bitsoClient.public.availableBooks().then(books => {
  console.log(books.prices);
});

##How to Use

const BitsoNode = require("@lomelidev/bitso-api");

const client = new BitsoNode({
  key: "KEY",
  secret: "SECRET"
});

// Public API
client.public
  .ticker({
    book: BitsoNode.exchanges.MXN_BTC
  })
  .then(res => console.log(res))
  .catch(err => console.log(err));

// Private API
client.private
  .accountStatus()
  .then(res => console.log(res))
  .catch(err => console.log(err));

To use private API methods that move any currency or change account information you need to create the API client with the authorizeMovements parameter ser to true.

(REMEMBER TO USE AT YOUR OWN RISK!)

const BitsoNode = require("@lomelidev/bitso-api");

const client = new BitsoNode({
  key: "KEY",
  secret: "SECRET",
  authorizeMovements: true
});

client.private
  .placeOrder({
    book: BitsoNode.exchanges.BTC_MXN,
    side: "buy",
    type: "market",
    minor: "10000"
  })
  .then(res => console.log(res))
  .catch(err => console.log(err));

License

The MIT License (MIT)

Copyright (c) 2020 Miguel Lomeli

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Dependents (1)

Package Sidebar

Install

npm i @lomelidev/bitso-api

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

20 kB

Total Files

17

Last publish

Collaborators

  • lomelidev