Currency Tracker Plus avatar
Currency Tracker Plus

Pricing

from $9.00 / 1,000 results

Go to Apify Store
Currency Tracker Plus

Currency Tracker Plus

Track currency exchange rates with historical context

Pricing

from $9.00 / 1,000 results

Rating

0.0

(0)

Developer

Aryan Saxena

Aryan Saxena

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

📈 Currency Tracker Plus

Track currency exchange rates with historical context.

Currency Tracker Plus is an Apify Actor that monitors a specific currency pair (e.g., EUR/USD). It provides the current real-time exchange rate and compares it with performance over the last 3 trading days.

Features

  • Real-time Rates: Fetches the latest exchange rate immediately.
  • Historical Analysis: Retrieves closing rates for the last 3 business days.
  • Flexible Pairs: Default is EUR against USD, but fully configurable (e.g., GBP against JPY).
  • Frankfurter API: Powered by the open-source Frankfurter API for reliable data.
  • JSON Output: Returns logical, structured data for easy integration.

Use Cases

  • Financial Monitoring: Keep an eye on specific currency trends.
  • Dashboard Integration: Feed data into internal financial dashboards.
  • Trigger-based Alerts: Use Apify webhooks to alert you if the rate drops/peaks (requires downstream logic).

Input Configuration

The Actor accepts the following input fields:

FieldTypeDefaultDescription
currencyStringEURRequired. The target currency code (ISO 4217).
baseCurrencyStringUSDThe base currency to compare against.

Example Input

{
"currency": "GBP",
"baseCurrency": "EUR"
}

Output

The Actor pushes results to the default dataset. Each item represents a data point (either the current rate or a historical day).

Output Fields

  • date (String): Date of the rate (YYYY-MM-DD).
  • rate (Number): The exchange rate.
  • currency (String): Target currency.
  • baseCurrency (String): Base currency.
  • rateType (String):
    • current: The live/latest rate fetched.
    • history: A historical closing rate.

Example Output

[
{
"date": "2024-05-21",
"rate": 1.0865,
"currency": "EUR",
"baseCurrency": "USD",
"rateType": "current"
},
{
"date": "2024-05-20",
"rate": 1.0850,
"currency": "EUR",
"baseCurrency": "USD",
"rateType": "history"
},
{
"date": "2024-05-17",
"rate": 1.0872,
"currency": "EUR",
"baseCurrency": "USD",
"rateType": "history"
},
{
"date": "2024-05-16",
"rate": 1.0885,
"currency": "EUR",
"baseCurrency": "USD",
"rateType": "history"
}
]

License

This Actor is open-source.

Resources