SELIC Rate Today: Current Value & Recent Trends

SELIC Rate Today: Current Value & Recent Trends

The SELIC (Sistema Especial de Liquidação e de Custódia) rate is Brazil's central bank interest rate, a critical benchmark for the country's financial system. As of today, the SELIC rate stands at 5.33%. This rate is pivotal for market participants, influencing borrowing costs, investment decisions, and overall economic activity. In this blog post, we will explore the current SELIC rate, recent trends, and how developers and financial analysts can leverage the Interest Rates API to access and analyze this vital data.

Understanding the SELIC Rate

The SELIC rate is the primary tool used by the Central Bank of Brazil to control inflation and stabilize the economy. It serves as the benchmark for various financial products, including loans and savings accounts. A higher SELIC rate typically indicates a tighter monetary policy aimed at curbing inflation, while a lower rate suggests a more accommodative stance to stimulate economic growth.

For developers and financial analysts, understanding the SELIC rate's movements is crucial for making informed decisions. The Interest Rates API provides real-time access to the SELIC rate and other related financial data, enabling users to integrate this information into their applications seamlessly.

Fetching the Latest SELIC Rate

To retrieve the latest SELIC rate using the Interest Rates API, you can utilize the /latest endpoint. This endpoint provides the most current values for specified symbols, including SELIC.

API Request Example

Here’s how to fetch the latest SELIC rate using cURL:

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

The expected JSON response will look like this:

{
"success": true,
"date": "2026-06-27",
"base": "MIXED",
"rates": {
"SELIC": 5.33
},
"dates": {
"SELIC": "2026-06-27"
},
"currencies": {
"SELIC": "USD"
}
}

In this response, the key fields are:

  • success: Indicates whether the request was successful.
  • date: The date of the reported rate.
  • rates: An object containing the SELIC rate.
  • currencies: The currency in which the rate is reported.

Historical Comparison of the SELIC Rate

To understand how the current SELIC rate compares to previous values, you can use the /historical endpoint. This endpoint allows you to retrieve the SELIC rate for a specific date.

API Request Example

To fetch the SELIC rate from one month ago, you can use the following cURL command:

curl "https://interestratesapi.com/api/v1/historical?date=2026-05-27&symbols=SELIC&api_key=YOUR_KEY"

The expected JSON response will be:

{
"success": true,
"date": "2026-05-27",
"base": "USD",
"rates": {
"SELIC": 5.25
},
"currencies": {
"SELIC": "USD"
}
}

This response shows that the SELIC rate was 5.25% a month ago, indicating a slight increase to the current rate of 5.33%. Such historical comparisons are essential for analysts looking to identify trends and make forecasts.

Analyzing Recent Fluctuations

To gain insights into the SELIC rate's volatility over a specific period, the /fluctuation endpoint can be utilized. This endpoint provides statistics on the rate's changes, including the percentage change, high, and low values over a defined date range.

API Request Example

To analyze the fluctuations in the SELIC rate over the last 30 days, you can execute the following cURL command:

curl "https://interestratesapi.com/api/v1/fluctuation?start=2026-05-27&end=2026-06-27&symbols=SELIC&api_key=YOUR_KEY"

The expected JSON response will look like this:

{
"success": true,
"rates": {
"SELIC": {
"start_date": "2026-05-27",
"end_date": "2026-06-27",
"start_value": 5.25,
"end_value": 5.33,
"change": 0.08,
"change_pct": 1.52,
"high": 5.35,
"low": 5.20
}
}
}

Key fields in this response include:

  • start_date: The beginning date of the analysis period.
  • end_date: The end date of the analysis period.
  • start_value: The SELIC rate at the start of the period.
  • end_value: The SELIC rate at the end of the period.
  • change: The absolute change in the rate.
  • change_pct: The percentage change in the rate.
  • high: The highest rate during the period.
  • low: The lowest rate during the period.

Building a Real-Time Dashboard

For developers looking to create a real-time dashboard displaying the SELIC rate, integrating the Interest Rates API into a React application can be a straightforward process. Below is a simple example of how to implement this.

React Component Example

import React, { useEffect, useState } from 'react';

const SelicRateDashboard = () => {
const [selicRate, setSelicRate] = useState(null);

const fetchSelicRate = async () => {
const response = await fetch('https://interestratesapi.com/api/v1/latest?symbols=SELIC&api_key=YOUR_KEY');
const data = await response.json();
setSelicRate(data.rates.SELIC);
};

useEffect(() => {
fetchSelicRate();
const interval = setInterval(fetchSelicRate, 60000); // Refresh every minute
return () => clearInterval(interval);
}, []);

return (

Current SELIC Rate

{selicRate ? `${selicRate}%` : 'Loading...'}

); }; export default SelicRateDashboard;

This component fetches the latest SELIC rate and updates every minute, providing users with real-time information. Such dashboards are invaluable for traders and financial analysts who need to monitor interest rate changes closely.

Factors Influencing the SELIC Rate

Several factors influence the SELIC rate, including inflation, economic growth, and external economic conditions. The Central Bank of Brazil adjusts the SELIC rate to achieve its inflation target, which is crucial for maintaining economic stability. Developers and traders closely track these changes to make informed decisions regarding investments and financial products.

Conclusion

The SELIC rate is a vital indicator of Brazil's economic health, influencing various financial decisions. By leveraging the Interest Rates API, developers and analysts can access real-time data, historical trends, and fluctuations, enabling them to build robust financial applications and 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.

Ready to get started?

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

Get API Key

Related posts