Convert INR to BRL
Indian Rupee → Brazilian Real
1 INR = 0.0540827 BRL(1 BRL = 18.49021 INR)
Currency converter
1 INR =
0.054083 BRL
INR to BRL: last 30 days
Over the last 30 days, 1 INR traded between 0.053478 and 0.054754 BRL, averaging 0.053861 BRL. The INR/BRL rate is down 0.10% since 2026-08-28.
- 30-day high
- 0.054754
- 2026-09-01
- 30-day low
- 0.053478
- 2026-09-17
- 30-day average
- 0.053861
- Days with data: 30
- 30-day change
- -0.10%
- since 2026-08-28
0.054754
0.0534782026-08-28 → 2026-09-26
| Date | 1 INR in BRL | Daily change |
|---|---|---|
| 2026-09-26 | 0.054083 | 0.00% |
| 2026-09-25 | 0.054083 | +0.17% |
| 2026-09-24 | 0.053989 | +0.72% |
| 2026-09-23 | 0.053605 | +0.02% |
| 2026-09-22 | 0.053595 | +0.15% |
| 2026-09-21 | 0.053516 | -0.09% |
| 2026-09-20 | 0.053566 | 0.00% |
| 2026-09-19 | 0.053566 | 0.00% |
| 2026-09-18 | 0.053566 | +0.16% |
| 2026-09-17 | 0.053478 | -0.27% |
| 2026-09-16 | 0.053625 | -0.10% |
| 2026-09-15 | 0.053681 | -0.52% |
| 2026-09-14 | 0.053962 | +0.90% |
| 2026-09-13 | 0.053483 | 0.00% |
| 2026-09-12 | 0.053483 | 0.00% |
| Date | 1 INR in BRL | Daily change |
|---|---|---|
| 2026-09-11 | 0.053483 | -0.40% |
| 2026-09-10 | 0.053696 | +0.36% |
| 2026-09-09 | 0.053505 | -0.73% |
| 2026-09-08 | 0.053898 | -0.65% |
| 2026-09-07 | 0.05425 | +0.29% |
| 2026-09-06 | 0.054095 | 0.00% |
| 2026-09-05 | 0.054095 | 0.00% |
| 2026-09-04 | 0.054095 | +0.74% |
| 2026-09-03 | 0.053699 | -0.99% |
| 2026-09-02 | 0.054235 | -0.95% |
| 2026-09-01 | 0.054754 | +0.76% |
| 2026-08-31 | 0.054343 | +0.38% |
| 2026-08-30 | 0.054137 | 0.00% |
| 2026-08-29 | 0.054137 | 0.00% |
| 2026-08-28 | 0.054137 | — |
INR to BRL conversion table
1 INR0.054083 BRL
5 INR0.27041 BRL
10 INR0.54083 BRL
25 INR1.3521 BRL
50 INR2.7041 BRL
100 INR5.4083 BRL
500 INR27.0413 BRL
1,000 INR54.0827 BRL
5,000 INR270.4134 BRL
10,000 INR540.8267 BRL
Get the INR/BRL rate in your app
One GET request returns the latest INR → 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/INR/BRL"fetch('https://rate-api.com/api/v1/pair/INR/BRL', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} BRL`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/BRL",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} BRL")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/BRL');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 INR = {$data['rate']} BRL\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "BRL"
},
"rate": 0.0541,
"timestamp": 1790429432,
"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 INRBrazilian Real → Indian Rupee18.4902Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.