Convert INR to OMR
Indian Rupee → Omani Rial
1 INR = 0.00401281 OMR(1 OMR = 249.20176 INR)
Currency converter
1 INR =
0.0040128 OMR
INR to OMR: last 30 days
Over the last 30 days, 1 INR traded between 0.0040069 and 0.0040732 OMR, averaging 0.0040334 OMR. The INR/OMR rate is down 0.52% since 2026-08-28.
- 30-day high
- 0.0040732
- 2026-09-03
- 30-day low
- 0.0040069
- 2026-09-24
- 30-day average
- 0.0040334
- Days with data: 30
- 30-day change
- -0.52%
- since 2026-08-28
0.0040732
0.00400692026-08-28 → 2026-09-26
| Date | 1 INR in OMR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0040128 | 0.00% |
| 2026-09-25 | 0.0040128 | +0.15% |
| 2026-09-24 | 0.0040069 | -0.23% |
| 2026-09-23 | 0.004016 | -0.25% |
| 2026-09-22 | 0.0040262 | +0.18% |
| 2026-09-21 | 0.0040189 | +0.08% |
| 2026-09-20 | 0.0040157 | -0.07% |
| 2026-09-19 | 0.0040187 | +0.21% |
| 2026-09-18 | 0.0040102 | -0.04% |
| 2026-09-17 | 0.0040117 | +0.02% |
| 2026-09-16 | 0.0040109 | +0.05% |
| 2026-09-15 | 0.004009 | -0.49% |
| 2026-09-14 | 0.0040287 | -0.00% |
| 2026-09-13 | 0.0040289 | +0.12% |
| 2026-09-12 | 0.004024 | -0.05% |
| Date | 1 INR in OMR | Daily change |
|---|---|---|
| 2026-09-11 | 0.0040262 | -0.16% |
| 2026-09-10 | 0.0040328 | -0.35% |
| 2026-09-09 | 0.0040469 | -0.30% |
| 2026-09-08 | 0.0040593 | -0.33% |
| 2026-09-07 | 0.0040727 | +0.00% |
| 2026-09-06 | 0.0040726 | +0.14% |
| 2026-09-05 | 0.0040669 | -0.13% |
| 2026-09-04 | 0.0040721 | -0.03% |
| 2026-09-03 | 0.0040732 | +0.46% |
| 2026-09-02 | 0.0040545 | +0.03% |
| 2026-09-01 | 0.0040533 | +0.25% |
| 2026-08-31 | 0.0040433 | +0.61% |
| 2026-08-30 | 0.0040186 | -0.14% |
| 2026-08-29 | 0.0040241 | -0.24% |
| 2026-08-28 | 0.0040337 | — |
INR to OMR conversion table
1 INR0.0040128 OMR
5 INR0.020064 OMR
10 INR0.040128 OMR
25 INR0.10032 OMR
50 INR0.20064 OMR
100 INR0.40128 OMR
500 INR2.0064 OMR
1,000 INR4.0128 OMR
5,000 INR20.0641 OMR
10,000 INR40.1281 OMR
Get the INR/OMR rate in your app
One GET request returns the latest INR → OMR 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/OMR?precision=6"fetch('https://rate-api.com/api/v1/pair/INR/OMR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 INR = ${data.rate} OMR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/INR/OMR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 INR = {data['rate']} OMR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/INR/OMR?precision=6');
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']} OMR\n";Example response
{
"success": true,
"pair": {
"from": "INR",
"to": "OMR"
},
"rate": 0.004013,
"timestamp": 1790429448,
"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
OMR to INROmani Rial → Indian Rupee249.2018Convert INR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.