An open API service indexing awesome lists of open source software.

https://github.com/luciopaiva/exchange-rate-scraper

Simple scraper to get euro exchange rates from sources like Transferwise, Remessa Online, etc.
https://github.com/luciopaiva/exchange-rate-scraper

euro exchange-rates remessa-online transferwise

Last synced: about 1 month ago
JSON representation

Simple scraper to get euro exchange rates from sources like Transferwise, Remessa Online, etc.

Awesome Lists containing this project

README

        

# Exchange Rate Scraper

Simple scraper to get euro quotes from sources like Transferwise, Remessa Online, etc.

You must have `nvm` installed. To run:

```bash
nvm install
npm install
npm start
```

It will fetch quotation once per minute from all available sources. Results are stored in the `./data/` folder in CSV format.

CSV columns are, in order:

* ISO date
* origin currency
* target currency
* ask rate
* bid rate (or `0` when not available)

## Reference

Check [Transferwise docs](https://api-docs.transferwise.com/#exchange-rates) for more interesting things to try in the future.