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.
The preferred way to install this package is through npm.
npm install --save @xe/xecd-rates-client
This package follows semantic versioning.
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);
});
xecd-rates-client-node is an open-source project. Submit a pull request to contribute!
npm test
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.
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.