BRL Swap 3-Month vs Global Rates: Interest Rate Comparison Guide

BRL Swap 3-Month vs Global Rates: Interest Rate Comparison Guide

Introduction

In the ever-evolving landscape of global finance, understanding interest rates is crucial for developers, economists, and financial analysts alike. The ability to compare rates across different regions and institutions can provide valuable insights into economic trends, monetary policy, and investment opportunities. This blog post will focus on the comparison of the BRL Swap 3-Month rate against global rates, particularly the US Federal Funds Rate (FED_FUNDS). We will leverage the Interest Rates API to gather and analyze relevant data, providing a comprehensive guide for fintech developers and financial data engineers.

Understanding Interest Rates

Interest rates are a fundamental aspect of the financial system, influencing everything from consumer loans to corporate financing. They are determined by various factors, including central bank policies, inflation expectations, and market demand for credit. In this context, the Federal Funds Rate serves as a benchmark for other interest rates in the economy, impacting lending rates, mortgage rates, and savings rates.

For developers building fintech applications, accessing accurate and timely interest rate data is essential. The Interest Rates API provides a robust solution for retrieving interest rate data, allowing users to programmatically access a wide range of rates, including central bank rates, interbank rates, and treasury rates.

Exploring Available Symbols

Before diving into the comparison of interest rates, it's important to understand the available symbols within the Interest Rates API. The API offers a catalogue of symbols that can be filtered by category, such as central bank, interbank, treasury, or reference rates. To retrieve the available symbols, you can use the following API endpoint:

curl "https://interestratesapi.com/api/v1/symbols?category=central_bank&base=USD&api_key=YOUR_KEY"

This request will return a list of central bank rates, including the FED_FUNDS rate. Here’s an example of the JSON response:


{
"success": true,
"count": 2,
"symbols": [
{
"symbol": "FED_FUNDS",
"name": "US Federal Funds Rate",
"category": "central_bank",
"country_code": "US",
"currency_code": "USD",
"frequency": "daily",
"description": "The interest rate at which depository institutions lend reserve balances to each other overnight"
}
]
}

Fetching Latest Interest Rates

To compare the FED_FUNDS rate with other global rates, we can fetch the latest values for multiple symbols simultaneously. This can be achieved using the /latest endpoint of the Interest Rates API. Here’s how you can retrieve the latest rates for the FED_FUNDS and other major central bank rates:

curl "https://interestratesapi.com/api/v1/latest?symbols=FED_FUNDS,ECB_MRO,BOE_BANK_RATE,RBA_CASH_RATE,SNB_POLICY_RATE&api_key=YOUR_KEY"

The JSON response will provide the latest rates along with their respective currencies:


{
"success": true,
"date": "2026-09-10",
"base": "MIXED",
"rates": {
"FED_FUNDS": 5.33,
"ECB_MRO": 4.50,
"BOE_BANK_RATE": 4.25,
"RBA_CASH_RATE": 4.10,
"SNB_POLICY_RATE": 1.75
},
"dates": {
"FED_FUNDS": "2026-09-10",
"ECB_MRO": "2026-09-10",
"BOE_BANK_RATE": "2026-09-10",
"RBA_CASH_RATE": "2026-09-10",
"SNB_POLICY_RATE": "2026-09-10"
},
"currencies": {
"FED_FUNDS": "USD",
"ECB_MRO": "EUR",
"BOE_BANK_RATE": "GBP",
"RBA_CASH_RATE": "AUD",
"SNB_POLICY_RATE": "CHF"
}
}

Analyzing Historical Data

Understanding the historical context of interest rates can provide insights into trends and economic cycles. The /historical endpoint allows users to retrieve the value of a specific rate on a given date. For example, to get the FED_FUNDS rate on June 15, 2025, you can use the following request:

curl "https://interestratesapi.com/api/v1/historical?date=2025-06-15&symbols=FED_FUNDS&api_key=YOUR_KEY"

The response will include the rate for that specific date:


{
"success": true,
"date": "2025-06-15",
"base": "USD",
"rates": {
"FED_FUNDS": 5.33
},
"currencies": {
"FED_FUNDS": "USD"
}
}

Comparing Loan Costs

Another valuable feature of the Interest Rates API is the ability to compare loan costs between different rates. This can be particularly useful for financial analysts and developers looking to assess the impact of different interest rates on loan repayments. The /convert endpoint allows users to compare the total interest cost of a loan at the latest rates of two symbols.

For instance, to compare the total interest cost of a loan at the FED_FUNDS rate versus the ECB_MRO rate, you can use 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-09-10",
"total_interest": 5330.00,
"total_payment": 105330.00
},
"to": {
"symbol": "ECB_MRO",
"rate": 4.50,
"date": "2026-09-10",
"total_interest": 4500.00,
"total_payment": 104500.00
},
"difference": {
"rate_spread": 0.83,
"interest_saved": 830.00
}
}

Time Series Analysis

To visualize the trends in interest rates over time, the /timeseries endpoint can be utilized. This endpoint allows users to retrieve a series of rates between two specified dates. For example, to analyze the FED_FUNDS rate over the past two years, you can use the following request:

curl "https://interestratesapi.com/api/v1/timeseries?start=2025-09-10&end=2026-09-10&symbols=FED_FUNDS&api_key=YOUR_KEY"

The response will include daily rates for the specified period:


{
"success": true,
"base": "USD",
"start_date": "2025-09-10",
"end_date": "2026-09-10",
"rates": {
"FED_FUNDS": {
"2025-01-02": 5.33,
"2025-01-03": 5.33,
"2025-01-06": 5.33
}
},
"frequencies": {
"FED_FUNDS": "daily"
},
"currencies": {
"FED_FUNDS": "USD"
}
}

This data can be used to create visualizations, such as multi-line charts, to compare the trajectories of different interest rates over time.

Understanding Rate Spreads

The spread between the FED_FUNDS rate and other benchmark rates can signal various economic conditions. A wider spread may indicate a carry trade opportunity, where investors borrow at a lower rate and invest at a higher rate. Conversely, a narrowing spread could suggest monetary policy divergence or changing economic outlooks. Understanding these dynamics is crucial for making informed investment decisions.

Conclusion

In conclusion, the Interest Rates API provides a powerful tool for accessing and analyzing interest rate data. By leveraging the various endpoints, developers and financial analysts can gain valuable insights into global interest rate trends, compare loan costs, and visualize historical data. This comprehensive guide serves as a foundation for utilizing the API effectively in fintech applications.

For further exploration of the API's capabilities, be sure to Explore Interest Rates API features and Get started with Interest Rates API today!

Ready to get started?

Get your API key and start validating bank data in minutes.

Get API Key

Related posts