1.0.5 • Published 4 years ago

fixer.io v1.0.5

Weekly downloads
2
License
ISC
Repository
github
Last release
4 years ago

Fixer Api

Powered by 15+ exchange rate data sources, the Fixer API is capable of delivering real-time exchange rate data for 170 world currencies.

##Installing

Using npm:

npm install fixer.io

Example

API KEY

To get your free api key, register on the following website https://fixer.io/product

Current Exchange Rates

const fixer = require('fixer.io');
const FIXER_API_KEY = ‘REPLACE_WITH_YOUR_FIXER_API_KEY’

(async ()=>{
    try{
        const response = await fixer.currentRates(FIXER_API_KEY);
        console.log(response);
    }catch(error){
        console.log(error);
    }
})();

Reference

For more details visit : https://fixer.io

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago