Skip to content

Getting started

Up And Coding edited this page Jul 20, 2018 · 34 revisions

jFixer is a Java API that encapsulates interactions with the Fixer.io exchange rates API.

A short introduction to Fixer.io

Fixer.io provides exchange rates web services in the form of six endpoints:

  • Latest endpoint: returns the exchange rates for a given currency
  • Historical endpoint: returns the exchange rates for a given currency AND a given date
  • Time series endpoint: returns a list of exchange rates for a given currency between a start and end date
  • Conversion endpoint: convert an amount from one currency to another
  • Fluctuation endpoint: returns the fluctuation in value and percentage of a currency between a start and end date

Prior to calling the endpoints, you need to get an access key from Fixer.io. You can get one for free but in that case the service comes with a few limitations.

Please visit Fixer.io for more information, especially the documentation about the endpoints.

Whats is jFixer API

jFixer is a java API that encapsulates the calls to the Fixer.io web services. jFixer relies on the following component:

How to use jFixer API in your application

Clone this wiki locally