Getting started - lico/jFixer GitHub Wiki

It takes two lines of code to get the latest exchange rates:

FixerApiLoader fixerApiLoader = (baseUrl, accessKey, baseCurrency);    
List<ExchangeRate> rates = fixerApiLoader.getLatest();

where :

  • baseUrl is the URL of Fixer.io web service. Depending on your subscription plan, this can be one of the following:

  • accessKey is the unique identification key of your Fixer.io account

  • baseCurrency is the base currency that will serve to calculations

To get a detailed description of each web service, please read the pages related to the endpoints:

Also, you can read the documentation at Fixer.io.