CDOR 3-Month vs Global Rates: Interest Rate Comparison Guide
In the rapidly evolving landscape of finance and fintech, understanding interest rates is crucial for developers, economists, and financial analysts. Interest rates not only influence borrowing costs but also reflect the economic health of a country. This blog post aims to provide a comprehensive comparison of the Canadian Dollar Offered Rate (CDOR) for 3-month terms against various global rates, with a particular focus on the Federal Funds Effective Rate (FED_FUNDS). We will explore how to access this data programmatically using the Interest Rates API, analyze trends, and discuss the implications of these rates on financial markets.
Understanding Interest Rates
Interest rates are a fundamental aspect of the financial system, affecting everything from consumer loans to corporate financing. They are determined by various factors, including central bank policies, inflation expectations, and economic growth. The CDOR is a benchmark rate used in Canada, while the FED_FUNDS rate serves as a key indicator in the United States. By comparing these rates, we can gain insights into monetary policy divergence and economic outlooks across different regions.
Accessing Interest Rate Data with Interest Rates API
The Interest Rates API provides a robust platform for accessing interest rate data. It offers various endpoints that allow developers to retrieve current rates, historical data, and perform comparisons between different rates. Below are the key endpoints relevant to our analysis:
- GET /api/v1/symbols: Retrieve a catalogue of available rate symbols.
- GET /api/v1/latest: Fetch the latest values for specified symbols.
- GET /api/v1/historical: Access historical rates for a specific date.
- GET /api/v1/timeseries: Retrieve a series of rates between two dates.
- GET /api/v1/convert: Compare loan interest costs between two rates.
Fetching Current Rates
To begin our analysis, we can fetch the latest rates for the FED_FUNDS and other major global rates. This can be accomplished using the /latest endpoint. Below is an example of how to retrieve the latest rates:
curl "https://interestratesapi.com/api/v1/latest?symbols=FED_FUNDS,ECB_MRO,BOE_BANK_RATE,BOJ_POLICY_RATE,SNB_POLICY_RATE&api_key=YOUR_KEY"
The response will provide the latest rates for the specified symbols, allowing us to compare the FED_FUNDS rate with other central bank rates:
{
"success": true,
"date": "2026-08-10",
"base": "MIXED",
"rates": {
"FED_FUNDS": 5.33,
"ECB_MRO": 4.50,
"BOE_BANK_RATE": 4.25,
"BOJ_POLICY_RATE": 0.10,
"SNB_POLICY_RATE": -0.75
},
"dates": {
"FED_FUNDS": "2026-08-10",
"ECB_MRO": "2026-08-10",
"BOE_BANK_RATE": "2026-08-10",
"BOJ_POLICY_RATE": "2026-08-10",
"SNB_POLICY_RATE": "2026-08-10"
},
"currencies": {
"FED_FUNDS": "USD",
"ECB_MRO": "EUR",
"BOE_BANK_RATE": "GBP",
"BOJ_POLICY_RATE": "JPY",
"SNB_POLICY_RATE": "CHF"
}
}
This data allows us to analyze the current interest rate environment and understand how the FED_FUNDS rate compares to other global benchmarks.
Exploring Historical Trends
To gain deeper insights, we can analyze historical trends in interest rates. The /timeseries endpoint allows us to retrieve rate data over a specified period. For example, to compare the FED_FUNDS rate over the past two years, we can use the following request:
curl "https://interestratesapi.com/api/v1/timeseries?start=2024-08-10&end=2026-08-10&symbols=FED_FUNDS&api_key=YOUR_KEY"
The response will include daily rates for the specified period:
{
"success": true,
"base": "USD",
"start_date": "2024-08-10",
"end_date": "2026-08-10",
"rates": {
"FED_FUNDS": {
"2024-08-10": 4.75,
"2024-08-11": 4.75,
"2024-08-12": 4.80,
...
"2026-08-10": 5.33
}
},
"frequencies": {
"FED_FUNDS": "daily"
},
"currencies": {
"FED_FUNDS": "USD"
}
}
With this data, developers can create visualizations to analyze trends and fluctuations in the FED_FUNDS rate over time, providing valuable insights into monetary policy changes.
Comparing Loan Costs
Another practical application of the Interest Rates API is comparing loan costs between different rates. Using the /convert endpoint, we can assess the total interest cost of a loan based on the latest rates. For instance, to compare the FED_FUNDS rate with the ECB_MRO and BOE_BANK_RATE, we can execute the following request:
curl "https://interestratesapi.com/api/v1/convert?from=FED_FUNDS&to=ECB_MRO&amount=100000&term_months=12&api_key=YOUR_KEY"
The response will provide a detailed breakdown of the loan costs:
{
"success": true,
"amount": 100000,
"term_months": 12,
"from": {
"symbol": "FED_FUNDS",
"rate": 5.33,
"date": "2026-08-10",
"total_interest": 5330.00,
"total_payment": 105330.00
},
"to": {
"symbol": "ECB_MRO",
"rate": 4.50,
"date": "2026-08-10",
"total_interest": 4500.00,
"total_payment": 104500.00
},
"difference": {
"rate_spread": 0.83,
"interest_saved": 830.00
}
}
This comparison highlights the potential savings a borrower could achieve by choosing a loan based on the ECB_MRO rate instead of the FED_FUNDS rate, emphasizing the importance of understanding interest rate differentials.
Analyzing Rate Spreads and Economic Implications
The spread between the FED_FUNDS rate and other benchmark rates can signal various economic conditions. A narrowing spread may indicate a convergence in monetary policy, while a widening spread could suggest diverging economic outlooks. For instance, if the FED_FUNDS rate is significantly higher than the ECB_MRO, it may reflect tighter monetary policy in the U.S. compared to Europe, potentially impacting capital flows and investment decisions.
Understanding these dynamics is crucial for developers and analysts working in fintech, as they can influence investment strategies, risk assessments, and financial modeling.
Conclusion
In conclusion, the comparison of the CDOR 3-month rate against global benchmarks like the FED_FUNDS rate provides valuable insights into the financial landscape. By leveraging the Interest Rates API, developers can access real-time and historical data, perform loan cost comparisons, and analyze trends effectively. This capability not only enhances decision-making but also empowers financial professionals to navigate the complexities of interest rates in a global context.
For more information on how to utilize the Interest Rates API, visit Explore Interest Rates API features and Get started with Interest Rates API.




