Go to file
2018-07-20 21:14:26 +01:00
bin Refactor tasks that fetch rates 2018-06-08 15:32:52 +01:00
config Replace Unicorn with Puma 2018-07-20 21:02:46 +01:00
db/migrate Repack app 2018-03-08 23:51:36 +00:00
lib Return amount 2018-07-20 21:14:26 +01:00
spec Implement time series 2018-07-05 21:30:17 +01:00
.dockerignore Repack app 2018-03-08 23:51:36 +00:00
.env.example Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
.eslintrc Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
.gitignore Drop Guard, use Sass 2018-07-20 21:14:26 +01:00
.rubocop.yml Implement time series 2018-07-05 21:30:17 +01:00
.tool-versions Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
.travis.yml Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
app.json Add a Heroku app.json 2018-06-08 15:32:52 +01:00
config.ru Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
docker-compose.override.yml Replace Unicorn with Puma 2018-07-20 21:02:46 +01:00
docker-compose.prod.yml Rebrand, serve HTML 2018-06-08 15:32:52 +01:00
docker-compose.yml Replace Unicorn with Puma 2018-07-20 21:02:46 +01:00
Dockerfile Replace Unicorn with Puma 2018-07-20 21:02:46 +01:00
Gemfile Drop Guard, use Sass 2018-07-20 21:14:26 +01:00
Gemfile.lock Drop Guard, use Sass 2018-07-20 21:14:26 +01:00
LICENSE Remove dates from license 2017-01-03 12:44:13 +00:00
limit_req.conf Repack app 2018-03-08 23:51:36 +00:00
Rakefile Repack app 2018-03-08 23:51:36 +00:00
README.md Implement time series 2018-07-05 21:30:17 +01:00

Frankfurter

Travis

Frankfurter is a free API for current and historical foreign exchange rates published by the European Central Bank.

Rates are updated around 4PM CET every working day.

Usage

Get the current foreign exchange rates.

GET /current

Get historical rates for any day since 1999.

GET /2000-01-03

Rates quote against the Euro by default. Quote against a different currency.

GET /current?from=USD

Request specific exchange rates.

GET /current?to=GBP

Change the converted amount.

GET /current?amount=100

Finally, use all the above together.

GET /current?from=EUR&to=GBP&amount=100

The primary use case is client side. For instance, with money.js in the browser

let demo = () => {
  let rate = fx(1).from("GBP").to("USD")
  alert("£1 = $" + rate.toFixed(4))
}

fetch('https://yourdomain.com/current')
  .then((resp) => resp.json())
  .then((data) => fx.rates = data.rates)
  .then(demo)

Installation

To build locally, type

docker-compose up -d

Now you can access the API at

http://localhost:8080

In production, first create a .env file based on .env.example. Then, run with

docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d

To update to a newer image

docker-compose -f docker-compose.yml -f docker-compose.prod.yml pull
docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d

Within a few minutes, you will be able to access the API at

https://yourdomain.com:8080