Convert BRL to INR
Brazilian Real → Indian Rupee
1 BRL = 18.49021 INR(1 INR = 0.0540827 BRL)
Currency converter
1 BRL =
18.4902 INR
BRL to INR: last 30 days
Over the last 30 days, 1 BRL traded between 18.2635 and 18.6992 INR, averaging 18.5669 INR. The BRL/INR rate is up 0.10% since 2026-08-28.
- 30-day high
- 18.6992
- 2026-09-17
- 30-day low
- 18.2635
- 2026-09-01
- 30-day average
- 18.5669
- Days with data: 30
- 30-day change
- +0.10%
- since 2026-08-28
18.6992
18.26352026-08-28 → 2026-09-26
| Date | 1 BRL in INR | Daily change |
|---|---|---|
| 2026-09-26 | 18.4902 | 0.00% |
| 2026-09-25 | 18.4902 | -0.17% |
| 2026-09-24 | 18.5222 | -0.71% |
| 2026-09-23 | 18.6548 | -0.02% |
| 2026-09-22 | 18.6586 | -0.15% |
| 2026-09-21 | 18.686 | +0.09% |
| 2026-09-20 | 18.6686 | 0.00% |
| 2026-09-19 | 18.6686 | 0.00% |
| 2026-09-18 | 18.6686 | -0.16% |
| 2026-09-17 | 18.6992 | +0.28% |
| 2026-09-16 | 18.6479 | +0.10% |
| 2026-09-15 | 18.6287 | +0.52% |
| 2026-09-14 | 18.5316 | -0.89% |
| 2026-09-13 | 18.6977 | 0.00% |
| 2026-09-12 | 18.6977 | 0.00% |
| Date | 1 BRL in INR | Daily change |
|---|---|---|
| 2026-09-11 | 18.6977 | +0.40% |
| 2026-09-10 | 18.6235 | -0.35% |
| 2026-09-09 | 18.6897 | +0.73% |
| 2026-09-08 | 18.5537 | +0.65% |
| 2026-09-07 | 18.4331 | -0.29% |
| 2026-09-06 | 18.4861 | 0.00% |
| 2026-09-05 | 18.4861 | 0.00% |
| 2026-09-04 | 18.4861 | -0.73% |
| 2026-09-03 | 18.6224 | +1.00% |
| 2026-09-02 | 18.4383 | +0.96% |
| 2026-09-01 | 18.2635 | -0.75% |
| 2026-08-31 | 18.4017 | -0.38% |
| 2026-08-30 | 18.4718 | 0.00% |
| 2026-08-29 | 18.4718 | 0.00% |
| 2026-08-28 | 18.4718 | — |
BRL to INR conversion table
1 BRL18.4902 INR
5 BRL92.4511 INR
10 BRL184.9021 INR
25 BRL462.2553 INR
50 BRL924.5105 INR
100 BRL1,849.021 INR
500 BRL9,245.105 INR
1,000 BRL18,490.21 INR
5,000 BRL92,451.05 INR
10,000 BRL184,902.1 INR
Get the BRL/INR rate in your app
One GET request returns the latest BRL → INR 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/BRL/INR"fetch('https://rate-api.com/api/v1/pair/BRL/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 BRL = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/BRL/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 BRL = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/BRL/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 BRL = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "BRL",
"to": "INR"
},
"rate": 18.4902,
"timestamp": 1790432167,
"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
INR to BRLIndian Rupee → Brazilian Real0.054083Convert BRL to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.