BKBM 3-Month vs Global Rates: Interest Rate Comparison Guide
In the rapidly evolving world of finance, understanding interest rates is crucial for developers building fintech applications, economists analyzing market trends, and quantitative analysts seeking to make informed decisions. This blog post delves into the comparison between the New Zealand Bank Bill Market Rate for 3 months (BKBM_3M) and various global interest rates. We will explore how to leverage the Interest Rates API to access and analyze this data effectively.
Understanding Interest Rates and Their Importance
Interest rates are a fundamental aspect of the financial ecosystem, influencing everything from consumer loans to corporate financing. They are set by central banks and can vary significantly across different regions and types of financial instruments. The BKBM_3M rate, which represents the interbank lending rate in New Zealand, serves as a benchmark for various financial products in the region.
By comparing BKBM_3M with other global rates, developers and analysts can gain insights into monetary policy divergence, economic outlook, and potential investment opportunities. This guide will provide a comprehensive overview of how to access and analyze these rates using the Interest Rates API.
Accessing Interest Rate Data
The Interest Rates API offers several endpoints to access interest rate data. Below, we will explore the key endpoints relevant to our analysis:
- /api/v1/symbols: Retrieve a catalogue of available rate symbols.
- /api/v1/latest: Get the latest value per symbol.
- /api/v1/historical: Fetch the value on a specific date.
- /api/v1/timeseries: Access a series of rates between two dates.
- /api/v1/fluctuation: Analyze change statistics over a range.
- /api/v1/ohlc: Obtain OHLC candlestick data.
- /api/v1/convert: Compare loan interest costs between two rates.
Fetching Available Symbols
To begin our analysis, we can retrieve the available symbols using the /api/v1/symbols endpoint. This allows developers to discover comparable rates programmatically.
curl "https://interestratesapi.com/api/v1/symbols?category=interbank&api_key=YOUR_KEY"
The response will provide a list of available symbols, including BKBM_3M and other interbank rates.
{
"success": true,
"count": 3,
"symbols": [
{
"symbol": "BKBM_3M",
"name": "New Zealand Bank Bill Market Rate 3-Month",
"category": "interbank",
"country_code": "NZ",
"currency_code": "NZD",
"frequency": "monthly",
"description": "The interest rate for 3-month bank bills in New Zealand."
},
{
"symbol": "SOFR",
"name": "Secured Overnight Financing Rate",
"category": "interbank",
"country_code": "US",
"currency_code": "USD",
"frequency": "daily",
"description": "The interest rate for overnight loans secured by U.S. Treasury securities."
}
]
}
Comparing Latest Rates
Next, we can use the /api/v1/latest endpoint to fetch the latest values for BKBM_3M alongside several major central bank rates. This comparison will help us understand the current interest rate landscape.
curl "https://interestratesapi.com/api/v1/latest?symbols=BKBM_3M,FED_FUNDS,ECB_MRO,RBA_CASH_RATE,BOE_BANK_RATE&api_key=YOUR_KEY"
The response will provide the latest rates for each symbol, allowing us to analyze the differences.
{
"success": true,
"date": "2026-07-28",
"base": "MIXED",
"rates": {
"BKBM_3M": 5.33,
"FED_FUNDS": 5.00,
"ECB_MRO": 4.50,
"RBA_CASH_RATE": 4.10,
"BOE_BANK_RATE": 4.25
},
"dates": {
"BKBM_3M": "2026-07-28",
"FED_FUNDS": "2026-07-28",
"ECB_MRO": "2026-07-28",
"RBA_CASH_RATE": "2026-07-28",
"BOE_BANK_RATE": "2026-07-28"
},
"currencies": {
"BKBM_3M": "NZD",
"FED_FUNDS": "USD",
"ECB_MRO": "EUR",
"RBA_CASH_RATE": "AUD",
"BOE_BANK_RATE": "GBP"
}
}
Analyzing Historical Data
To understand how BKBM_3M has changed over time, we can use the /api/v1/historical endpoint to fetch the rate on a specific date.
curl "https://interestratesapi.com/api/v1/historical?date=2025-06-15&symbols=BKBM_3M&api_key=YOUR_KEY"
The response will provide the historical rate for that date, allowing for trend analysis.
{
"success": true,
"date": "2025-06-15",
"base": "NZD",
"rates": {
"BKBM_3M": 5.20
},
"currencies": {
"BKBM_3M": "NZD"
}
}
Time Series Analysis
For a more comprehensive analysis, we can use the /api/v1/timeseries endpoint to retrieve a series of rates over a specified period. This is particularly useful for visualizing trends and making data-driven decisions.
curl "https://interestratesapi.com/api/v1/timeseries?start=2025-01-01&end=2026-01-01&symbols=BKBM_3M&api_key=YOUR_KEY"
The response will include daily rates for BKBM_3M, which can be plotted to visualize trends over time.
{
"success": true,
"base": "NZD",
"start_date": "2025-01-01",
"end_date": "2026-01-01",
"rates": {
"BKBM_3M": {
"2025-01-02": 5.10,
"2025-01-03": 5.15,
"2025-01-06": 5.20
}
},
"frequencies": {
"BKBM_3M": "daily"
},
"currencies": {
"BKBM_3M": "NZD"
}
}
Understanding Rate Fluctuations
To analyze how BKBM_3M has fluctuated over a specific period, we can use the /api/v1/fluctuation endpoint. This will provide insights into the rate's volatility and trends.
curl "https://interestratesapi.com/api/v1/fluctuation?start=2025-01-01&end=2026-01-01&symbols=BKBM_3M&api_key=YOUR_KEY"
The response will include statistics such as the start and end values, percentage change, and high/low rates during the period.
{
"success": true,
"rates": {
"BKBM_3M": {
"start_date": "2025-01-01",
"end_date": "2026-01-01",
"start_value": 5.10,
"end_value": 5.33,
"change": 0.23,
"change_pct": 4.51,
"high": 5.50,
"low": 5.00
}
}
}
Comparing Loan Costs
Another valuable feature of the Interest Rates API is the ability to compare loan costs between different rates using the /api/v1/convert endpoint. This can help borrowers understand potential savings when choosing between different loan products.
curl "https://interestratesapi.com/api/v1/convert?from=BKBM_3M&to=ECB_MRO&amount=100000&term_months=12&api_key=YOUR_KEY"
The response will provide a detailed comparison of total interest costs, highlighting the potential savings.
{
"success": true,
"amount": 100000,
"term_months": 12,
"from": {
"symbol": "BKBM_3M",
"rate": 5.33,
"date": "2026-07-28",
"total_interest": 5330.00,
"total_payment": 105330.00
},
"to": {
"symbol": "ECB_MRO",
"rate": 4.50,
"date": "2026-07-28",
"total_interest": 4500.00,
"total_payment": 104500.00
},
"difference": {
"rate_spread": 0.83,
"interest_saved": 830.00
}
}
Conclusion
In conclusion, the Interest Rates API provides a powerful tool for developers, economists, and analysts to access and analyze interest rate data. By leveraging endpoints such as /latest, /historical, /timeseries, and /convert, users can gain valuable insights into the dynamics of interest rates, including BKBM_3M and its comparison with global benchmarks.
Understanding these rates is essential for making informed financial decisions, whether for personal loans, corporate financing, or investment strategies. The ability to programmatically access this data not only saves time but also enhances the accuracy of financial analyses.
For more information and to get started with the Interest Rates API, visit their official site and explore the features available to you.




