1.0.3 • Published 4 years ago

nowpayments-api-typescript v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

NOWPayments API Typescript Version

NOWPayments API Wrapper Library

Installation

Using npm:

$ npm install nowpayments-api-typescript

Examples

Node JS

import { NOWPaymentsApi } from 'nowpayments-api-typescript';

const api = new NOWPaymentsApi({ apiKey: 'xxxxx-xxxxx-xxxxx-xxxxx' }); // your api key
async function logCurrencies() {
  const { currencies } = await api.getCurrencies();
  console.log(currencies);
}
logCurrencies();

Resources

Many Thanks for Inspired

NowPaymentsIO/nowpayments-api-js