/v1/selic
Selic policy target rate
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/bcb-api/v1/selic" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bcb-api/v1/selic", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bcb-api/v1/selic");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/bcb-api/v1/selic",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"date": "2026-06-17",
"unit": "% per year",
"source": "Banco Central do Brasil",
"history": [
{
"date": "2026-06-12",
"rate_pct": 14.5
},
{
"date": "2026-06-13",
"rate_pct": 14.5
},
{
"date": "2026-06-14",
"rate_pct": 14.5
},
{
"date": "2026-06-15",
"rate_pct": 14.5
},
{
"date": "2026-06-16",
"rate_pct": 14.5
},
{
"date": "2026-06-17",
"rate_pct": 14.5
}
],
"rate_pct": 14.5,
"indicator": "Selic — Brazil policy target rate (Copom)"
},
"meta": {
"timestamp": "2026-06-09T11:38:32.085Z",
"request_id": "862e0e5b-9a01-4eb0-a4be-78546025b9e1"
},
"status": "ok",
"message": "Selic retrieved successfully",
"success": true
}