All Projects â†’ Formicka â†’ Exchangerate.host

Formicka / Exchangerate.host

Exchange rates API is a simple and lightweight free service for current and historical foreign exchange rates & crypto exchange rates.

Projects that are alternatives of or similar to Exchangerate.host

python-forex-quotes
Library to fetch and parse realtime Forex quotes and convert currencies
Stars: ✭ 25 (-66.67%)
Mutual labels:  currency-converter
Laravel Swap
💵 Currency exchange rates for Laravel and Lumen
Stars: ✭ 296 (+294.67%)
Mutual labels:  currency-converter
Coinonline
A Cryptocurrency/Blockchain wallet app based on React Native
Stars: ✭ 59 (-21.33%)
Mutual labels:  currency-converter
CurrencyConverter
Currency Converter App using fixer API at http://api.fixer.io
Stars: ✭ 22 (-70.67%)
Mutual labels:  currency-converter
react-local-currency
💵 💴Shows the price of your services in the customer's currency 💶 💷
Stars: ✭ 21 (-72%)
Mutual labels:  currency-converter
Forex Python
Foreign exchange rates, Bitcoin price index and currency conversion using ratesapi.io
Stars: ✭ 378 (+404%)
Mutual labels:  currency-converter
MKT
Exchange Price Service , Stocks , Cryptocurrency,Stock prediction and more
Stars: ✭ 27 (-64%)
Mutual labels:  currency-converter
Bash Snippets
A collection of small bash scripts for heavy terminal users
Stars: ✭ 8,558 (+11310.67%)
Mutual labels:  currency-converter
Laravel Money
Currency formatting and conversion package for Laravel
Stars: ✭ 261 (+248%)
Mutual labels:  currency-converter
Laravel Cconverter
A simple currency converter plugin for Laravel 5. Currency providers: The European Central Bank, OpenExchange, CurrencyLayer and fixer.io
Stars: ✭ 39 (-48%)
Mutual labels:  currency-converter
currency-exchange
Currency Exchange | powered by Angular 10, TypeScript, ES6+ features, SCSS, JavaScript, PWA
Stars: ✭ 13 (-82.67%)
Mutual labels:  currency-converter
currency-api
Free Currency Exchange Rates API with 150+ Currencies & No Rate Limits
Stars: ✭ 507 (+576%)
Mutual labels:  currency-converter
Gocurrency
Simple currency converter. Insert an amount, what currency to convert from and what currency to convert to.
Stars: ✭ 26 (-65.33%)
Mutual labels:  currency-converter
currency-converter
Converts currencies with fixer.io API.
Stars: ✭ 19 (-74.67%)
Mutual labels:  currency-converter
Php Forex Quotes
PHP Library for fetching realtime forex quotes.
Stars: ✭ 61 (-18.67%)
Mutual labels:  currency-converter
historical-bank-ruby
A Ruby Bank that serves historical exchange rates
Stars: ✭ 14 (-81.33%)
Mutual labels:  currency-converter
Money
PHP implementation of Fowler's Money pattern.
Stars: ✭ 3,868 (+5057.33%)
Mutual labels:  currency-converter
Alfred3 Workflow Currencyx
Most convinent currencies converting tool for alfred3
Stars: ✭ 68 (-9.33%)
Mutual labels:  currency-converter
Android Money
Simple money and currency converter library for android.
Stars: ✭ 66 (-12%)
Mutual labels:  currency-converter
Money
A money and currency library for PHP
Stars: ✭ 855 (+1040%)
Mutual labels:  currency-converter

Exchangerate.host

ko-fi

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

A public instance of the API lives at https://api.exchangerate.host.

Rates are updated around midnight UTC every working day.

Community libraries

Usage

Get the all available currencies.

GET https://api.exchangerate.host/symbols

Get the latest foreign exchange rates.

GET https://api.exchangerate.host/latest

Get historical rates for any day since 1999.

GET https://api.exchangerate.host/2000-01-03

Rates are quoted against the Euro by default. Quote against a different currency by setting the base parameter in your request.

GET https://api.exchangerate.host/latest?base=USD

Request specific exchange rates by setting the symbols parameter.

GET https://api.exchangerate.host/latest?symbols=USD,GBP

Currency conversion endpoint, can be used to convert any amount from one currency to another.

GET https://api.exchangerate.host/convert?from=EUR&to=USD

Timeseries endpoint are for daily historical rates between two dates of your choice, with a maximum time frame of 365 days.

GET https://api.exchangerate.host/timeseries?start_date=2020-01-01&end_date=2020-04-04&symbols=EUR,USD,GBP

Using the fluctuation endpoint you will be able to retrieve information about how currencies fluctuate on a day-to-day basis.

GET https://api.exchangerate.host/fluctuation?start_date=2020-01-01&end_date=2020-04-04&symbols=EUR,USD,GBP

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://api.exchangerate.host/latest')
  .then((resp) => resp.json())
  .then((data) => fx.rates = data.rates)
  .then(demo)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].