Convert INR to ZAR
Indian Rupee → South African Rand
1 INR = 0.17005 ZAR(1 ZAR = 5.880607 INR)
Currency converter
1 INR =
0.17005 ZAR
INR to ZAR: last 30 days
Over the last 30 days, 1 INR traded between 0.16775 and 0.17129 ZAR, averaging 0.16939 ZAR. The INR/ZAR rate is up 1.37% since 2026-08-28.
- 30-day high
- 0.17129
- 2026-09-24
- 30-day low
- 0.16775
- 2026-08-28
- 30-day average
- 0.16939
- Days with data: 30
- 30-day change
- +1.37%
- since 2026-08-28
0.17129
0.167752026-08-28 → 2026-09-26
| Date | 1 INR in ZAR | Daily change |
|---|---|---|
| 2026-09-26 | 0.17005 | 0.00% |
| 2026-09-25 | 0.17005 | -0.72% |
| 2026-09-24 | 0.17129 | +0.32% |
| 2026-09-23 | 0.17074 | +0.49% |
| 2026-09-22 | 0.16991 | +0.13% |
| 2026-09-21 | 0.16969 | -0.02% |
| 2026-09-20 | 0.16972 | 0.00% |
| 2026-09-19 | 0.16972 | 0.00% |
| 2026-09-18 | 0.16972 | +0.19% |
| 2026-09-17 | 0.1694 | -0.07% |
| 2026-09-16 | 0.16953 | -0.03% |
| 2026-09-15 | 0.16958 | -0.27% |
| 2026-09-14 | 0.17004 | +0.56% |
| 2026-09-13 | 0.16909 | 0.00% |
| 2026-09-12 | 0.16909 | 0.00% |
| Date | 1 INR in ZAR | Daily change |
|---|---|---|
| 2026-09-11 | 0.16909 | -0.05% |
| 2026-09-10 | 0.16918 | +0.32% |
| 2026-09-09 | 0.16864 | -0.20% |
| 2026-09-08 | 0.16898 | -0.16% |
| 2026-09-07 | 0.16924 | +0.15% |
| 2026-09-06 | 0.16898 | 0.00% |
| 2026-09-05 | 0.16898 | 0.00% |
| 2026-09-04 | 0.16898 | -0.44% |
| 2026-09-03 | 0.16972 | +0.15% |
| 2026-09-02 | 0.16947 | -0.40% |
| 2026-09-01 | 0.17015 | +0.48% |
| 2026-08-31 | 0.16934 | +0.95% |
| 2026-08-30 | 0.16775 | 0.00% |
| 2026-08-29 | 0.16775 | 0.00% |
| 2026-08-28 | 0.16775 | — |
INR to ZAR conversion table
1 INR0.17005 ZAR
5 INR0.85025 ZAR
10 INR1.7005 ZAR
25 INR4.2513 ZAR
50 INR8.5025 ZAR
100 INR17.005 ZAR
500 INR85.0252 ZAR
1,000 INR170.0505 ZAR
5,000 INR850.2524 ZAR
10,000 INR1,700.5048 ZAR
Get the INR/ZAR rate in your app
One GET request returns the latest INR → ZAR 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/ZAR"fetch('https://rate-api.com/api/v1/pair/INR/ZAR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} ZAR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/ZAR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} ZAR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/ZAR');
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']} ZAR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "ZAR"
},
"rate": 0.1701,
"timestamp": 1790439664,
"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
ZAR to INRSouth African Rand → Indian Rupee5.8806Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.