-
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
''' FixerApiLoader fixerApiLoader = (baseUrl, accessKey, baseCurrency); ''' where baseUrl is the URL of Fixer.io web service, can be:
- http://data.fixer.io/api/
- or, https://data.fixer.io/api/ accessKey is the unique identification key of your Fixer.io account baseCurrency is the base currency that will serve to calculations
''' List currencies = fixerApiLoader.getSupportedCurrencies(); '''
''' List rates = fixerApiLoader.getLatest(); or List rates = fixerApiLoader.getLatest("USD,JPY,CAD"); or List rates = fixerApiLoader.getLatest(arrayListOfCurrencies); '''