Central Bank Of Egypt Historical Rates avatar

Central Bank Of Egypt Historical Rates

Try for free

3 days trial then $25.00/month - No credit card required now

Go to Store
Central Bank Of Egypt Historical Rates

Central Bank Of Egypt Historical Rates

maged120/central-bank-of-egypt-historical-rates
Try for free

3 days trial then $25.00/month - No credit card required now

get historical exchange rates aligned with the Central Bank Of Egypt (CBE)

Developer
Maintained by Community

Actor Metrics

  • 1 Monthly user

  • No reviews yet

  • 1 bookmark

  • Created in Mar 2025

  • Modified 2 days ago

Categories

Historical Exchange Rates Fetcher

Overview

This Apify actor fetches historical exchange rates from the Central Bank of Egypt (CBE) website for a specified date range and list of currencies. It supports direct rates (e.g., USD to EGP), reverse rates (e.g., EGP to USD), and optional cross-rates (e.g., USD to EUR).

Input

The actor accepts a JSON object with the following fields:

  • fromDate (required): Start date (DD/MM/YYYY).
  • toDate (required): End date (DD/MM/YYYY).
  • currencies (required): Array of currency codes (e.g., ["USD", "EUR"]).
  • includeCrossRates (optional): Include cross-currency rates (default: false).
  • includeBuySell (optional): Include buy and sell rates (default: true).
  • includeConversionRate (optional): Include average conversion rate (default: true).

Example Input

1{
2  "fromDate": "06/03/2025",
3  "toDate": "07/03/2025",
4  "currencies": ["USD", "EUR"],
5  "includeCrossRates": true,
6  "includeBuySell": true,
7  "includeConversionRate": true
8}

Example Outpul

1[
2  {
3    "date": "06/03/2025",
4    "base_name": "US Dollar",
5    "base": "USD",
6    "target_name": "Egyptian Pound",
7    "target": "EGP",
8    "buy": 50.6406,
9    "sell": 50.7785,
10    "conversion_rate": 50.70955
11  },
12  {
13    "date": "06/03/2025",
14    "base_name": "Egyptian Pound",
15    "base": "EGP",
16    "target_name": "US Dollar",
17    "target": "USD",
18    "buy": 0.0197,
19    "sell": 0.0197,
20    "conversion_rate": 0.0197
21  },
22  {
23    "date": "06/03/2025",
24    "base_name": "Euro",
25    "base": "EUR",
26    "target_name": "Egyptian Pound",
27    "target": "EGP",
28    "buy": 54.6513,
29    "sell": 54.8052,
30    "conversion_rate": 54.72825
31  },
32  {
33    "date": "06/03/2025",
34    "base_name": "Egyptian Pound",
35    "base": "EGP",
36    "target_name": "Euro",
37    "target": "EUR",
38    "buy": 0.0182,
39    "sell": 0.0183,
40    "conversion_rate": 0.0183
41  },
42]

Supoorted Currencies

1{
2  "US Dollar": "USD",
3  "Euro": "EUR",
4  "Pound Sterling": "GBP",
5  "Canadian Dollar": "CAD",
6  "Danish Krone": "DKK",
7  "Norwegian Krone": "NOK",
8  "Swedish Krona": "SEK",
9  "Swiss Franc": "CHF",
10  "Japanese Yen 100": "JPY",
11  "Saudi Riyal": "SAR",
12  "Kuwaiti Dinar": "KWD",
13  "UAE Dirham": "AED",
14  "Australian Dollar": "AUD",
15  "Bahraini Dinar": "BHD",
16  "Omani Riyal": "OMR",
17  "Qatari Riyal": "QAR",
18  "Jordanian Dinar": "JOD",
19  "Chinese Yuan": "CNY",
20  "Egyptian Pound": "EGP"
21}