Convert ZAR to INR
South African Rand → Indian Rupee
1 ZAR = 5.880607 INR(1 INR = 0.17005 ZAR)
Currency converter
1 ZAR =
5.8806 INR
ZAR to INR: last 30 days
Over the last 30 days, 1 ZAR traded between 5.8381 and 5.9612 INR, averaging 5.9037 INR. The ZAR/INR rate is down 1.35% since 2026-08-28.
- 30-day high
- 5.9612
- 2026-08-28
- 30-day low
- 5.8381
- 2026-09-24
- 30-day average
- 5.9037
- Days with data: 30
- 30-day change
- -1.35%
- since 2026-08-28
5.9612
5.83812026-08-28 → 2026-09-26
| Date | 1 ZAR in INR | Daily change |
|---|---|---|
| 2026-09-26 | 5.8806 | 0.00% |
| 2026-09-25 | 5.8806 | +0.73% |
| 2026-09-24 | 5.8381 | -0.32% |
| 2026-09-23 | 5.8567 | -0.49% |
| 2026-09-22 | 5.8854 | -0.13% |
| 2026-09-21 | 5.8932 | +0.02% |
| 2026-09-20 | 5.8922 | 0.00% |
| 2026-09-19 | 5.8922 | 0.00% |
| 2026-09-18 | 5.8922 | -0.18% |
| 2026-09-17 | 5.9031 | +0.07% |
| 2026-09-16 | 5.8987 | +0.03% |
| 2026-09-15 | 5.8968 | +0.27% |
| 2026-09-14 | 5.8809 | -0.56% |
| 2026-09-13 | 5.9138 | 0.00% |
| 2026-09-12 | 5.9138 | 0.00% |
| Date | 1 ZAR in INR | Daily change |
|---|---|---|
| 2026-09-11 | 5.9138 | +0.05% |
| 2026-09-10 | 5.9108 | -0.32% |
| 2026-09-09 | 5.9296 | +0.20% |
| 2026-09-08 | 5.918 | +0.16% |
| 2026-09-07 | 5.9087 | -0.15% |
| 2026-09-06 | 5.9178 | 0.00% |
| 2026-09-05 | 5.9178 | 0.00% |
| 2026-09-04 | 5.9178 | +0.44% |
| 2026-09-03 | 5.8919 | -0.15% |
| 2026-09-02 | 5.9008 | +0.40% |
| 2026-09-01 | 5.8771 | -0.48% |
| 2026-08-31 | 5.9052 | -0.94% |
| 2026-08-30 | 5.9612 | 0.00% |
| 2026-08-29 | 5.9612 | 0.00% |
| 2026-08-28 | 5.9612 | — |
ZAR to INR conversion table
1 ZAR5.8806 INR
5 ZAR29.403 INR
10 ZAR58.8061 INR
25 ZAR147.0152 INR
50 ZAR294.0303 INR
100 ZAR588.0607 INR
500 ZAR2,940.3034 INR
1,000 ZAR5,880.6069 INR
5,000 ZAR29,403.034 INR
10,000 ZAR58,806.069 INR
Get the ZAR/INR rate in your app
One GET request returns the latest ZAR → 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/ZAR/INR"fetch('https://rate-api.com/api/v1/pair/ZAR/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 ZAR = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/ZAR/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 ZAR = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/ZAR/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 ZAR = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "ZAR",
"to": "INR"
},
"rate": 5.8806,
"timestamp": 1790437622,
"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 ZARIndian Rupee → South African Rand0.17005Convert ZAR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.