node-upbit-api
TypeScript icon, indicating that this package has built-in type declarations

1.3.0 • Public • Published

NPM Version

node-upbit-api

wrapper for upbit API

Installation

$ npm ci

Build

$ npm run build

Lint

$ npm run lint  # Only Check Lint
$ npm run lint:fix  # Fix to Lint Error
$ npm run format  # Check prettier

How to Use

import ApiUpbit from 'node-upbit-api';

new ApiUpbit('accessKey', 'secretKey').getAccounts().then((accounts) => {
  console.log(accounts);
});

Available API List

  • Exchange API
    • Assets
      • [x] GET /v1/accounts
    • Orders
      • [x] GET /v1/orders/chance
      • [x] GET /v1/order
        • getOrder
        • Inquire individual orders through the order UUID.
      • [x] GET /v1/orders
      • [x] DELETE /v1/order
      • [x] POST /v1/orders
    • Withdrawal
    • Deposit
  • Quotation API
    • Coin List
      • [ ] GET /v1/market/all
    • Candle
      • [ ] GET /v1/candles/minute/{unit}
      • [ ] GET /v1/candles/days
      • [ ] GET /v1/candles/weeks
      • [ ] GET /v1/candles/months
    • Conclusion
      • [ ] GET /v1/trades/ticks
    • Ticker
      • [ ] GET /v1/ticker
    • Orderbook
      • [ ] GET /v1/orderbook
  • etc
    • [ ] GET /v1/status/wallet
    • [ ] GET /v1/api_keys

Commit-message

Link

Package Sidebar

Install

npm i node-upbit-api

Weekly Downloads

0

Version

1.3.0

License

MIT

Unpacked Size

38.1 kB

Total Files

87

Last publish

Collaborators

  • imwh0im