mirror of
https://github.com/hakanensari/frankfurter.git
synced 2024-11-22 02:52:49 +01:00
46 lines
1.0 KiB
Markdown
46 lines
1.0 KiB
Markdown
# Frankfurter
|
|
|
|
[![Build](https://github.com/hakanensari/frankfurter/workflows/build/badge.svg)](https://github.com/hakanensari/frankfurter/actions)
|
|
|
|
[Frankfurter](https://frankfurter.dev) is a free and open-source currency data API that tracks reference exchange rates published by the European Central Bank.
|
|
|
|
`api.frankfurter.app` hosts a public instance of the API.
|
|
|
|
## Getting Started
|
|
|
|
Get the latest exchange rates.
|
|
|
|
```
|
|
https://api.frankfurter.app/latest
|
|
```
|
|
|
|
Get rates for a past date.
|
|
|
|
```
|
|
https://api.frankfurter.app/2000-01-03
|
|
```
|
|
|
|
Get rates for a period.
|
|
|
|
```http
|
|
https://api.frankfurter.app/2010-01-01..2010-01-31
|
|
```
|
|
|
|
## Deployment
|
|
|
|
You can self-host Frankfurter with Docker.
|
|
|
|
```bash
|
|
docker run -d -p 8080:8080 \
|
|
-e "DATABASE_URL=<postgres_url>" \
|
|
--name frankfurter hakanensari/frankfurter
|
|
```
|
|
|
|
Alternatively, copy the [docker-compose.yml](./docker-compose.yml) file to your system, and in the same directory run:
|
|
|
|
```bash
|
|
docker compose up --wait
|
|
```
|
|
|
|
This will also setup and host the PostgreSQL for Frankfurter.
|