Convert USD to BRL
US Dollar → Brazilian Real
1 USD = 5.182057 BRL(1 BRL = 0.192974 USD)
Currency converter
1 USD =
5.1821 BRL
USD to BRL: last 30 days
Over the last 30 days, 1 USD traded between 5.074 and 5.1989 BRL, averaging 5.1381 BRL. The USD/BRL rate is up 0.35% since 2026-08-29.
- 30-day high
- 5.1989
- 2026-09-01
- 30-day low
- 5.074
- 2026-09-03
- 30-day average
- 5.1381
- Days with data: 30
- 30-day change
- +0.35%
- since 2026-08-29
5.1989
5.0742026-08-29 → 2026-09-27
| Date | 1 USD in BRL | Daily change |
|---|---|---|
| 2026-09-27 | 5.1821 | 0.00% |
| 2026-09-26 | 5.1821 | 0.00% |
| 2026-09-25 | 5.1821 | +0.02% |
| 2026-09-24 | 5.1808 | +0.95% |
| 2026-09-23 | 5.1322 | +0.18% |
| 2026-09-22 | 5.1231 | -0.09% |
| 2026-09-21 | 5.1279 | -0.16% |
| 2026-09-20 | 5.1359 | 0.00% |
| 2026-09-19 | 5.1359 | 0.00% |
| 2026-09-18 | 5.1359 | +0.10% |
| 2026-09-17 | 5.1307 | -0.30% |
| 2026-09-16 | 5.1459 | -0.10% |
| 2026-09-15 | 5.1512 | -0.10% |
| 2026-09-14 | 5.1566 | +0.90% |
| 2026-09-13 | 5.1108 | 0.00% |
| Date | 1 USD in BRL | Daily change |
|---|---|---|
| 2026-09-12 | 5.1108 | 0.00% |
| 2026-09-11 | 5.1108 | -0.27% |
| 2026-09-10 | 5.1247 | +0.70% |
| 2026-09-09 | 5.0889 | -0.43% |
| 2026-09-08 | 5.1111 | -0.29% |
| 2026-09-07 | 5.1261 | +0.29% |
| 2026-09-06 | 5.1114 | 0.00% |
| 2026-09-05 | 5.1114 | 0.00% |
| 2026-09-04 | 5.1114 | +0.74% |
| 2026-09-03 | 5.074 | -1.49% |
| 2026-09-02 | 5.1507 | -0.93% |
| 2026-09-01 | 5.1989 | +0.52% |
| 2026-08-31 | 5.1718 | +0.15% |
| 2026-08-30 | 5.1641 | 0.00% |
| 2026-08-29 | 5.1641 | — |
USD to BRL conversion table
1 USD5.1821 BRL
5 USD25.9103 BRL
10 USD51.8206 BRL
25 USD129.5514 BRL
50 USD259.1029 BRL
100 USD518.2057 BRL
500 USD2,591.0287 BRL
1,000 USD5,182.0574 BRL
5,000 USD25,910.287 BRL
10,000 USD51,820.574 BRL
Get the USD/BRL rate in your app
One GET request returns the latest USD → BRL rate as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/pair/USD/BRL"fetch('https://rate-api.com/api/v1/pair/USD/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/BRL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "BRL"
},
"rate": 5.1821,
"timestamp": 1790470777,
"date": "2026-09-27"
}Replace YOUR_API_KEY with a key from your dashboard. The same key also works in the URL path or an X-API-Key header.
Get your free API key
Free plan: 2,500 requests a month, no credit card. Upgrade any time for conversion, historical rates and higher limits.
Related conversions
BRL to USDBrazilian Real → US Dollar0.19297Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.