The CIBOR (Copenhagen Interbank Offered Rate) 3-Month Rate is a critical benchmark for financial markets, particularly in Denmark. As of today, the current value of the CIBOR 3-Month Rate stands at 5.33%. This rate is significant for borrowers and investors alike, as it influences lending rates, mortgage rates, and various financial products. Understanding the current trends and historical data surrounding this rate is essential for developers building fintech applications, economists, quantitative analysts, and financial data engineers.
Understanding the CIBOR 3-Month Rate
The CIBOR 3-Month Rate is an interbank lending rate that reflects the average interest rate at which banks in Denmark lend to one another for a three-month period. It serves as a benchmark for various financial products, including loans and mortgages. The rate is influenced by several factors, including monetary policy decisions by the Danish central bank, market liquidity, and economic conditions.
Developers and financial analysts track the CIBOR 3-Month Rate closely as it provides insights into market expectations regarding future interest rates and economic activity. A rising CIBOR rate may indicate tightening monetary policy or increased demand for credit, while a falling rate could suggest easing conditions or reduced borrowing demand.
Fetching the Latest CIBOR 3-Month Rate
To obtain the latest value of the CIBOR 3-Month Rate, you can use the /latest endpoint from the Interest Rates API. Below are examples of how to fetch this data using different programming languages.
cURL Example
curl "https://interestratesapi.com/api/v1/latest?symbols=CIBOR_3M&api_key=YOUR_KEY"
Python Example
import requests
response = requests.get(
'https://interestratesapi.com/api/v1/latest',
params=dict(symbols='CIBOR_3M', api_key='YOUR_KEY')
)
data = response.json()
JavaScript Example
const response = await fetch(
'https://interestratesapi.com/api/v1/latest?symbols=CIBOR_3M&api_key=YOUR_KEY'
);
const data = await response.json();
PHP Example
$url = "https://interestratesapi.com/api/v1/latest?symbols=CIBOR_3M&api_key=YOUR_KEY";
$response = file_get_contents($url);
$data = json_decode($response, true);
The response from the API will include the latest CIBOR 3-Month Rate along with the date of the rate. Here’s an example of what the JSON response might look like:
{
"success": true,
"date": "2026-06-11",
"base": "MIXED",
"rates": {
"CIBOR_3M": 5.33
},
"dates": {
"CIBOR_3M": "2026-06-11"
},
"currencies": {
"CIBOR_3M": "DKK"
}
}
Historical Comparison of CIBOR 3-Month Rate
To understand how the current rate compares to previous values, you can use the /historical endpoint. This allows you to fetch the CIBOR 3-Month Rate for specific past dates.
Fetching Historical Data
cURL Example
curl "https://interestratesapi.com/api/v1/historical?date=2025-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY"
Python Example
response = requests.get(
'https://interestratesapi.com/api/v1/historical',
params=dict(date='2025-06-11', symbols='CIBOR_3M', api_key='YOUR_KEY')
)
data = response.json()
JavaScript Example
const response = await fetch(
'https://interestratesapi.com/api/v1/historical?date=2025-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY'
);
const data = await response.json();
PHP Example
$url = "https://interestratesapi.com/api/v1/historical?date=2025-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY";
$response = file_get_contents($url);
$data = json_decode($response, true);
The response will provide the historical rate for the specified date. Here’s an example response:
{
"success": true,
"date": "2025-06-11",
"base": "DKK",
"rates": {
"CIBOR_3M": 5.50
},
"currencies": {
"CIBOR_3M": "DKK"
}
}
Analyzing Recent Trends with Fluctuation Data
To analyze the recent trends of the CIBOR 3-Month Rate, you can use the /fluctuation endpoint. This endpoint provides statistics on the rate's changes over a specified date range.
Fetching Fluctuation Data
cURL Example
curl "https://interestratesapi.com/api/v1/fluctuation?start=2025-06-11&end=2026-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY"
Python Example
response = requests.get(
'https://interestratesapi.com/api/v1/fluctuation',
params=dict(start='2025-06-11', end='2026-06-11', symbols='CIBOR_3M', api_key='YOUR_KEY')
)
data = response.json()
JavaScript Example
const response = await fetch(
'https://interestratesapi.com/api/v1/fluctuation?start=2025-06-11&end=2026-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY'
);
const data = await response.json();
PHP Example
$url = "https://interestratesapi.com/api/v1/fluctuation?start=2025-06-11&end=2026-06-11&symbols=CIBOR_3M&api_key=YOUR_KEY";
$response = file_get_contents($url);
$data = json_decode($response, true);
The response will include details such as the start and end values, percentage change, and the highest and lowest rates during the specified period. Here’s an example response:
{
"success": true,
"rates": {
"CIBOR_3M": {
"start_date": "2025-06-11",
"end_date": "2026-06-11",
"start_value": 5.50,
"end_value": 5.33,
"change": -0.17,
"change_pct": -3.09,
"high": 5.50,
"low": 5.25
}
}
}
Building a Real-Time Dashboard
For developers looking to create a real-time dashboard displaying the CIBOR 3-Month Rate, you can utilize the /latest endpoint in a React application. Below is a simple example of how to implement this.
import React, { useEffect, useState } from 'react';
const CiborDashboard = () => {
const [ciborRate, setCiborRate] = useState(null);
const fetchCiborRate = async () => {
const response = await fetch('https://interestratesapi.com/api/v1/latest?symbols=CIBOR_3M&api_key=YOUR_KEY');
const data = await response.json();
setCiborRate(data.rates.CIBOR_3M);
};
useEffect(() => {
fetchCiborRate();
const interval = setInterval(fetchCiborRate, 60000); // Refresh every minute
return () => clearInterval(interval);
}, []);
return (
CIBOR 3-Month Rate
Current Rate: {ciborRate ? `${ciborRate}%` : 'Loading...'}
);
};
export default CiborDashboard;
This React component fetches the latest CIBOR 3-Month Rate every minute and displays it on the dashboard. This real-time data is crucial for applications that require up-to-date financial information.
Factors Influencing the CIBOR 3-Month Rate
Several factors influence the CIBOR 3-Month Rate, including:
- Monetary Policy: Decisions made by the Danish central bank regarding interest rates directly impact the CIBOR rate.
- Market Liquidity: The availability of funds in the banking system can affect interbank lending rates.
- Economic Indicators: Data such as inflation rates, GDP growth, and employment figures can influence market expectations and, consequently, the CIBOR rate.
Understanding these factors is essential for developers and traders who track the CIBOR 3-Month Rate daily, as they can provide insights into future market movements and investment opportunities.
Conclusion
The CIBOR 3-Month Rate is a vital indicator for financial markets in Denmark. By utilizing the Interest Rates API, developers can easily access real-time and historical data, enabling them to build robust financial applications. Whether you are analyzing trends, comparing rates, or building dashboards, the API provides the necessary tools to make informed decisions.
For more information and to explore the features of the Interest Rates API, visit Try Interest Rates API, Explore Interest Rates API features, and Get started with Interest Rates API.




