Exchange Rate Scraper avatar

Exchange Rate Scraper

Pricing

Pay per event

Go to Apify Store
Exchange Rate Scraper

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

Stas Persiianenko

Maintained by Community

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

  1. Go to the Exchange Rate Scraper input page.
  2. Add base currencies (e.g., USD, EUR) to the Base currencies list.
  3. Optionally add specific Target currencies to filter results.
  4. Click Start and wait for the run to finish.
  5. Download your data in JSON, CSV, or Excel format.

Input parameters

ParameterTypeRequiredDescription
baseCurrenciesarrayYesBase currency codes to get rates for (e.g., USD, EUR, GBP)
targetCurrenciesarrayNoFilter 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

FieldTypeDescription
baseCurrencystringBase currency code (e.g., USD)
targetCurrencystringTarget currency code (e.g., GBP)
ratenumberExchange rate (1 base = rate target)
inverseRatenumberInverse rate (1 target = inverseRate base)
lastUpdatedstringWhen the rate was last updated
nextUpdatestringWhen the next rate update is expected
scrapedAtstringISO 8601 timestamp of extraction

Pricing

Exchange Rate Scraper uses pay-per-event pricing:

EventPrice
Run started$0.001
Rate extracted$0.0005 per currency pair

Cost examples

ScenarioCost
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 ApifyClient
client = 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