GithubHelp home page GithubHelp logo

xenonlab / xecd-rates-client-node Goto Github PK

View Code? Open in Web Editor NEW
8.0 7.0 10.0 11 KB

REST Client

Home Page: http://www.xe.com/xecurrencydata/

License: Mozilla Public License 2.0

JavaScript 100.00%
nodejs nodejs-library javascript xe currency data sdk converter

xecd-rates-client-node's Introduction

XE Currency Data Client - Node.js

XE.com Inc. is the World's Trusted Currency Authority. This project provides an SDK to interface with our XE Currency Data (XECD) product.

XE Currency Data is a REST API that gives you access to daily or live rates and historic mid-market conversion rates between all of our supported currencies.

You will need an api key and secret to use this sdk. Sign up for a free trial or register for a full account.

Installation

The preferred way to install this package is through npm.

npm install --save @xe/xecd-rates-client

This package follows semantic versioning.

Usage

var xecdApiClient = require('@xe/xecd-rates-client')

var xecdConfig = {
    username: '<YOUR_API_ACCOUNT_ID>',
    password: '<YOUR_API_KEY>',
    apiUrl: 'https://xecdapi.xe.com/v1/'
};

var client = new xecdApiClient.XECD(xecdConfig);

client.accountInfo(function(err,data){
  console.log("accountInfo");
  console.log(err);
  console.log(data);
});

client.currencies(function(err,data){
  console.log("currencies");
  console.log(err);
  console.log(data);
});


client.convertFrom(function(err,data){
  console.log("convertFrom");
  console.log(err);
  console.log(data);
});

client.convertTo(function(err,data){
  console.log("convertTo");
  console.log(err);
  console.log(data);
});


client.historicRate(function(err,data){
  console.log("historicRate");
  console.log(err);
  console.log(data);
});

client.historicRatePeriod(function(err,data){
  console.log("historicRatePeriod");
  console.log(err);
  console.log(data);
});

Documentation

Technical Specifications

Contributing

xecd-rates-client-node is an open-source project. Submit a pull request to contribute!

Testing

npm test

Security Issues

If you discover a security vulnerability within this package, please DO NOT publish it publicly. Instead, contact us at security [at] xe.com. We will follow up with you as soon as possible.

About Us

XE.com Inc. is The World's Trusted Currency Authority. Development of this project is led by the XE.com Inc. Development Team and supported by the open-source community.

xecd-rates-client-node's People

Contributors

aerrus avatar mnesiem avatar ronakp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

xecd-rates-client-node's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.