TBOR_3M Interest Rate Tracker: Historical Data & Trends

TBOR_3M Interest Rate Tracker: Historical Data & Trends

Introduction

The financial landscape is constantly evolving, and understanding interest rates is crucial for developers, economists, and financial analysts. The TBOR_3M Interest Rate Tracker provides a comprehensive view of historical data and trends related to interest rates, particularly focusing on the Federal Funds Effective Rate (FED_FUNDS). This blog post will delve into the various endpoints available through the Interest Rates API, offering insights into how to effectively utilize this data for fintech applications, economic research, and financial modeling.

Understanding the Federal Funds Rate

The Federal Funds Rate is the interest rate at which depository institutions lend reserve balances to each other overnight. It is a critical tool used by the Federal Reserve to influence monetary policy and manage economic growth. Changes in the FED_FUNDS rate can have widespread implications for various financial markets, affecting everything from mortgage rates to stock prices. Understanding this rate is essential for developers building applications that require real-time financial data.

API Overview

The Interest Rates API provides a robust set of endpoints to access interest rate data, including the FED_FUNDS rate. All requests to the API use the GET method and require an API key for authentication. Below, we will explore each endpoint in detail, including practical examples and JSON response structures.

Endpoint 1: Get Available Symbols

The first endpoint allows users to retrieve a catalogue of available rate symbols. This is essential for developers to understand what data is accessible through the API.

Endpoint Details

**Endpoint:** /api/v1/symbols

**cURL Example:**

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

**JSON Response Example:**

{
"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"
}
]
}

This response provides a list of available symbols, including the FED_FUNDS rate, which is crucial for any financial application that tracks interest rates.

Endpoint 2: Get Latest Rates

This endpoint retrieves the latest values for specified symbols, allowing developers to access real-time data for their applications.

Endpoint Details

**Endpoint:** /api/v1/latest

**cURL Example:**

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

**JSON Response Example:**

{
"success": true,
"date": "2026-05-12",
"base": "MIXED",
"rates": {
"FED_FUNDS": 5.33,
"ECB_MRO": 4.50
},
"dates": {
"FED_FUNDS": "2026-05-12",
"ECB_MRO": "2026-05-12"
},
"currencies": {
"FED_FUNDS": "USD",
"ECB_MRO": "EUR"
}
}

The response includes the latest rates for the requested symbols, along with the corresponding dates and currency codes. This data is vital for applications that require up-to-date interest rate information.

Endpoint 3: Get Historical Rates

This endpoint allows users to retrieve the value of a specific symbol on a given date, which is essential for historical analysis and trend tracking.

Endpoint Details

**Endpoint:** /api/v1/historical

**cURL Example:**

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

**JSON Response Example:**

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

This endpoint is particularly useful for economists and analysts who need to study historical trends in interest rates over time.

Endpoint 4: Get Time Series Data

The time series endpoint provides a series of values between two specified dates, allowing for detailed trend analysis.

Endpoint Details

**Endpoint:** /api/v1/timeseries

**cURL Example:**

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

**JSON Response Example:**

{
"success": true,
"base": "USD",
"start_date": "2025-05-12",
"end_date": "2026-05-12",
"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 or dashboards that track the performance of the FED_FUNDS rate over time, providing valuable insights for financial decision-making.

Endpoint 5: Get Fluctuation Data

This endpoint provides statistics on changes in interest rates over a specified range, which is useful for understanding volatility and trends.

Endpoint Details

**Endpoint:** /api/v1/fluctuation

**cURL Example:**

curl "https://interestratesapi.com/api/v1/fluctuation?start=2025-05-12&end=2026-05-12&symbols=FED_FUNDS&api_key=YOUR_KEY"

**JSON Response Example:**

{
"success": true,
"rates": {
"FED_FUNDS": {
"start_date": "2025-05-12",
"end_date": "2026-05-12",
"start_value": 5.50,
"end_value": 5.33,
"change": -0.17,
"change_pct": -3.09,
"high": 5.50,
"low": 5.25
}
}
}

This endpoint is particularly valuable for risk models and financial analysis, allowing users to assess the stability of interest rates over time.

Endpoint 6: Get OHLC Data

The OHLC (Open, High, Low, Close) endpoint provides candlestick data for specified symbols, which is essential for technical analysis.

Endpoint Details

**Endpoint:** /api/v1/ohlc

**cURL Example:**

curl "https://interestratesapi.com/api/v1/ohlc?symbols=FED_FUNDS&period=monthly&start=2025-05-12&end=2026-05-12&api_key=YOUR_KEY"

**JSON Response Example:**

{
"success": true,
"period": "monthly",
"start_date": "2025-05-12",
"end_date": "2026-05-12",
"rates": {
"FED_FUNDS": [
{
"period": "2025-01",
"open": 5.50,
"high": 5.50,
"low": 5.33,
"close": 5.33,
"data_points": 23
}
]
}
}

This data is crucial for traders and analysts who rely on technical indicators to make informed decisions.

Endpoint 7: Get Conversion Data

This endpoint allows users to compare loan interest costs between two rates, which is valuable for financial planning and decision-making.

Endpoint Details

**Endpoint:** /api/v1/convert

**cURL Example:**

curl "https://interestratesapi.com/api/v1/convert?from=FED_FUNDS&to=ECB_MRO&amount=100000&term_months=12&api_key=YOUR_KEY"

**JSON Response Example:**

{
"success": true,
"amount": 100000,
"term_months": 12,
"from": {
"symbol": "FED_FUNDS",
"rate": 5.33,
"date": "2026-05-12",
"total_interest": 5330.00,
"total_payment": 105330.00
},
"to": {
"symbol": "ECB_MRO",
"rate": 4.50,
"date": "2026-05-12",
"total_interest": 4500.00,
"total_payment": 104500.00
},
"difference": {
"rate_spread": 0.83,
"interest_saved": 830.00
}
}

This endpoint is particularly useful for financial advisors and individuals looking to make informed decisions about loans and interest rates.

Conclusion

The Interest Rates API provides a comprehensive suite of endpoints that enable developers and financial analysts to access critical interest rate data. By leveraging these endpoints, users can build powerful applications that track, analyze, and visualize interest rate trends, ultimately leading to better financial decision-making. Whether you are developing a fintech application, conducting economic research, or building risk models, the Interest Rates API offers the tools necessary to succeed in today's dynamic financial landscape.

To get started with the Interest Rates API, explore its features and capabilities, and unlock the potential of interest rate data for your applications.

Ready to get started?

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

Get API Key

Related posts