Convert SGD to INR
Singapore Dollar → Indian Rupee
1 SGD = 75.026094 INR(1 INR = 0.0133287 SGD)
Currency converter
1 SGD =
75.0261 INR
SGD to INR: last 30 days
Over the last 30 days, 1 SGD traded between 74.5307 and 75.4106 INR, averaging 74.9967 INR. The SGD/INR rate is down 0.01% since 2026-08-28.
- 30-day high
- 75.4106
- 2026-09-15
- 30-day low
- 74.5307
- 2026-09-03
- 30-day average
- 74.9967
- Days with data: 30
- 30-day change
- -0.01%
- since 2026-08-28
75.4106
74.53072026-08-28 → 2026-09-26
| Date | 1 SGD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 75.0261 | 0.00% |
| 2026-09-25 | 75.0261 | +0.07% |
| 2026-09-24 | 74.9725 | +0.10% |
| 2026-09-23 | 74.8955 | -0.13% |
| 2026-09-22 | 74.9902 | -0.23% |
| 2026-09-21 | 75.1647 | +0.22% |
| 2026-09-20 | 75 | 0.00% |
| 2026-09-19 | 75 | 0.00% |
| 2026-09-18 | 75 | -0.30% |
| 2026-09-17 | 75.2294 | -0.18% |
| 2026-09-16 | 75.3632 | -0.06% |
| 2026-09-15 | 75.4106 | +0.26% |
| 2026-09-14 | 75.2145 | -0.20% |
| 2026-09-13 | 75.3687 | 0.00% |
| 2026-09-12 | 75.3687 | 0.00% |
| Date | 1 SGD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 75.3687 | +0.01% |
| 2026-09-10 | 75.3632 | +0.11% |
| 2026-09-09 | 75.281 | +0.49% |
| 2026-09-08 | 74.917 | +0.39% |
| 2026-09-07 | 74.6249 | +0.06% |
| 2026-09-06 | 74.5836 | 0.00% |
| 2026-09-05 | 74.5836 | 0.00% |
| 2026-09-04 | 74.5836 | +0.07% |
| 2026-09-03 | 74.5307 | -0.08% |
| 2026-09-02 | 74.5916 | +0.04% |
| 2026-09-01 | 74.5642 | -0.29% |
| 2026-08-31 | 74.778 | -0.34% |
| 2026-08-30 | 75.0334 | 0.00% |
| 2026-08-29 | 75.0334 | 0.00% |
| 2026-08-28 | 75.0334 | — |
SGD to INR conversion table
1 SGD75.0261 INR
5 SGD375.1305 INR
10 SGD750.2609 INR
25 SGD1,875.6523 INR
50 SGD3,751.3047 INR
100 SGD7,502.6094 INR
500 SGD37,513.047 INR
1,000 SGD75,026.094 INR
5,000 SGD375,130.47 INR
10,000 SGD750,260.94 INR
Get the SGD/INR rate in your app
One GET request returns the latest SGD → 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/SGD/INR"fetch('https://rate-api.com/api/v1/pair/SGD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SGD = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "INR"
},
"rate": 75.0261,
"timestamp": 1790435277,
"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 SGDIndian Rupee → Singapore Dollar0.013329Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.