Convert AUD to BRL
Australian Dollar → Brazilian Real
1 AUD = 3.643095 BRL(1 BRL = 0.274492 AUD)
Currency converter
1 AUD =
3.6431 BRL
AUD to BRL: last 30 days
Over the last 30 days, 1 AUD traded between 3.6272 and 3.7154 BRL, averaging 3.6725 BRL. The AUD/BRL rate is down 1.95% since 2026-08-28.
- 30-day high
- 3.7154
- 2026-08-28
- 30-day low
- 3.6272
- 2026-09-23
- 30-day average
- 3.6725
- Days with data: 30
- 30-day change
- -1.95%
- since 2026-08-28
3.7154
3.62722026-08-28 → 2026-09-26
| Date | 1 AUD in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 3.6431 | 0.00% |
| 2026-09-25 | 3.6431 | +0.08% |
| 2026-09-24 | 3.6404 | +0.36% |
| 2026-09-23 | 3.6272 | -0.43% |
| 2026-09-22 | 3.6427 | -0.48% |
| 2026-09-21 | 3.6602 | +0.09% |
| 2026-09-20 | 3.6567 | 0.00% |
| 2026-09-19 | 3.6567 | 0.00% |
| 2026-09-18 | 3.6567 | +0.19% |
| 2026-09-17 | 3.6499 | -0.55% |
| 2026-09-16 | 3.6701 | -0.01% |
| 2026-09-15 | 3.6705 | -0.16% |
| 2026-09-14 | 3.6765 | +0.29% |
| 2026-09-13 | 3.6658 | 0.00% |
| 2026-09-12 | 3.6658 | 0.00% |
| Date | 1 AUD in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 3.6658 | -0.44% |
| 2026-09-10 | 3.6821 | +0.15% |
| 2026-09-09 | 3.6767 | -0.29% |
| 2026-09-08 | 3.6874 | -0.29% |
| 2026-09-07 | 3.6982 | +0.44% |
| 2026-09-06 | 3.682 | 0.00% |
| 2026-09-05 | 3.682 | 0.00% |
| 2026-09-04 | 3.682 | +0.88% |
| 2026-09-03 | 3.6498 | -0.86% |
| 2026-09-02 | 3.6814 | -0.84% |
| 2026-09-01 | 3.7127 | +0.24% |
| 2026-08-31 | 3.7039 | -0.31% |
| 2026-08-30 | 3.7154 | 0.00% |
| 2026-08-29 | 3.7154 | 0.00% |
| 2026-08-28 | 3.7154 | — |
AUD to BRL conversion table
1 AUD3.6431 BRL
5 AUD18.2155 BRL
10 AUD36.4309 BRL
25 AUD91.0774 BRL
50 AUD182.1548 BRL
100 AUD364.3095 BRL
500 AUD1,821.5475 BRL
1,000 AUD3,643.0949 BRL
5,000 AUD18,215.475 BRL
10,000 AUD36,430.949 BRL
Get the AUD/BRL rate in your app
One GET request returns the latest AUD → 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/AUD/BRL"fetch('https://rate-api.com/api/v1/pair/AUD/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/BRL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "BRL"
},
"rate": 3.6431,
"timestamp": 1790429332,
"date": "2026-09-26"
}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 AUDBrazilian Real → Australian Dollar0.27449Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.