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.
- Host: GitHub
- URL: https://github.com/luciopaiva/exchange-rate-scraper
- Owner: luciopaiva
- Created: 2019-10-26T19:42:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T05:02:09.000Z (about 2 years ago)
- Last Synced: 2025-02-11T13:52:08.966Z (3 months ago)
- Topics: euro, exchange-rates, remessa-online, transferwise
- Language: JavaScript
- Homepage:
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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.