-
Notifications
You must be signed in to change notification settings - Fork 0
Getting started
Up And Coding edited this page Jul 20, 2018
·
34 revisions
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:
- Supported Symbols Endpoint
- Latest Endpoint
- Historical Endpoint
- Time-Series Endpoint
- Fluctuation Endpoint
- Conversion Endpoint
Also, you can read the documentation at Fixer.io.