Exchange Rate Scraper
Pricing
Pay per event
Exchange Rate Scraper
Get live currency exchange rates for 150+ currencies. Convert between any base currency and target currencies with inverse rates.
Pricing
Pay per event
Rating
0.0
(0)
Developer

Stas Persiianenko
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Get live currency exchange rates for 150+ currencies. Convert between any base currency and target currencies with forward and inverse rates, updated daily.
What does Exchange Rate Scraper do?
Exchange Rate Scraper fetches the latest currency exchange rates from a reliable open API. Specify one or more base currencies and optionally filter to specific target currencies. For each pair, you get the forward rate, inverse rate, and timestamps showing when the data was last updated.
Supports 150+ world currencies including USD, EUR, GBP, JPY, CHF, CAD, AUD, CNY, and many more.
Why use Exchange Rate Scraper?
- 150+ currencies — all major and many minor world currencies
- Multiple base currencies — compare rates from different perspectives in one run
- Inverse rates — get both forward and inverse conversion rates automatically
- Daily updates — rates are refreshed every 24 hours
- No API key needed — uses a free, reliable exchange rate API
- Structured output — clean JSON pairs ready for analysis or integration
Use cases
- Financial dashboards — feed live exchange rates into reporting tools
- Price comparison — convert product prices across different currencies
- Travel planning — check current rates for destination currencies
- E-commerce — update multi-currency pricing automatically
- Arbitrage monitoring — track rate differences across currency pairs
- Accounting — get daily rates for financial record-keeping
How to use Exchange Rate Scraper
- Go to the Exchange Rate Scraper input page.
- Add base currencies (e.g., USD, EUR) to the Base currencies list.
- Optionally add specific Target currencies to filter results.
- Click Start and wait for the run to finish.
- Download your data in JSON, CSV, or Excel format.
Input parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
baseCurrencies | array | Yes | Base currency codes to get rates for (e.g., USD, EUR, GBP) |
targetCurrencies | array | No | Filter to specific target currencies. Leave empty for all 150+ |
Example input
{"baseCurrencies": ["USD", "EUR"],"targetCurrencies": ["GBP", "JPY", "CAD", "CHF", "AUD"]}
Output example
Each currency pair returns a structured object:
{"baseCurrency": "USD","targetCurrency": "GBP","rate": 0.746164,"inverseRate": 1.340188,"lastUpdated": "Tue, 03 Mar 2026 00:02:32 +0000","nextUpdate": "Wed, 04 Mar 2026 00:11:42 +0000","scrapedAt": "2026-03-03T05:32:20.812Z"}
Output fields
| Field | Type | Description |
|---|---|---|
baseCurrency | string | Base currency code (e.g., USD) |
targetCurrency | string | Target currency code (e.g., GBP) |
rate | number | Exchange rate (1 base = rate target) |
inverseRate | number | Inverse rate (1 target = inverseRate base) |
lastUpdated | string | When the rate was last updated |
nextUpdate | string | When the next rate update is expected |
scrapedAt | string | ISO 8601 timestamp of extraction |
Pricing
Exchange Rate Scraper uses pay-per-event pricing:
| Event | Price |
|---|---|
| Run started | $0.001 |
| Rate extracted | $0.0005 per currency pair |
Cost examples
| Scenario | Cost |
|---|---|
| USD to 5 currencies | $0.0035 |
| USD + EUR to all 150+ | ~$0.151 |
| 5 base currencies to 10 targets | $0.026 |
API usage
Python
from apify_client import ApifyClientclient = ApifyClient("YOUR_API_TOKEN")run = client.actor("YOUR_USERNAME/exchange-rate-scraper").call(run_input={"baseCurrencies": ["USD", "EUR"],"targetCurrencies": ["GBP", "JPY", "CAD"]})for item in client.dataset(run["defaultDatasetId"]).iterate_items():print(f"{item['baseCurrency']}/{item['targetCurrency']}: {item['rate']:.4f}")
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });const run = await client.actor('YOUR_USERNAME/exchange-rate-scraper').call({baseCurrencies: ['USD', 'EUR'],targetCurrencies: ['GBP', 'JPY', 'CAD'],});const { items } = await client.dataset(run.defaultDatasetId).listItems();items.forEach(item => {console.log(`${item.baseCurrency}/${item.targetCurrency}: ${item.rate.toFixed(4)}`);});
Integrations
Connect Exchange Rate Scraper to your workflow with Apify integrations:
- Webhooks — trigger actions when rates are updated
- Google Sheets — export rates to spreadsheets automatically
- Slack — get daily rate notifications
- Zapier / Make — connect to 5,000+ apps and services
- Scheduled runs — set up daily rate extraction with Apify Scheduler
Tips and best practices
- Use standard ISO 4217 currency codes (USD, EUR, GBP, JPY, etc.)
- Rates are updated once per day — schedule runs accordingly
- Leave targetCurrencies empty to get all 150+ pairs for maximum coverage
- The inverse rate is pre-calculated for convenience — no need for manual conversion
- For historical rates, schedule daily runs and store results in a dataset over time
Changelog
- v0.1 — Initial release with 150+ currency support and inverse rates