Socket
Socket
Sign inDemoInstall

fixer.io

Package Overview
Dependencies
4
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fixer.io

fixer.io is currency exchange rates provider


Version published
Weekly downloads
7
Maintainers
1
Install size
418 kB
Created
Weekly downloads
 

Readme

Source

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

Keywords

FAQs

Last updated on 28 Mar 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc