Convert JOD to INR
Jordanian Dinar → Indian Rupee
1 JOD = 135.14433 INR(1 INR = 0.0073995 JOD)
Currency converter
1 JOD =
135.1443 INR
JOD to INR: last 30 days
Over the last 30 days, 1 JOD traded between 133.2722 and 135.3456 INR, averaging 134.5356 INR. The JOD/INR rate is up 0.45% since 2026-08-28.
- 30-day high
- 135.3456
- 2026-09-15
- 30-day low
- 133.2722
- 2026-09-03
- 30-day average
- 134.5356
- Days with data: 30
- 30-day change
- +0.45%
- since 2026-08-28
135.3456
133.27222026-08-28 → 2026-09-26
| Date | 1 JOD in INR | Daily change |
|---|---|---|
| 2026-09-26 | 135.1443 | 0.00% |
| 2026-09-25 | 135.1443 | -0.15% |
| 2026-09-24 | 135.3453 | +0.23% |
| 2026-09-23 | 135.0366 | +0.16% |
| 2026-09-22 | 134.8237 | -0.24% |
| 2026-09-21 | 135.1481 | -0.06% |
| 2026-09-20 | 135.2327 | 0.00% |
| 2026-09-19 | 135.2327 | +0.00% |
| 2026-09-18 | 135.2274 | -0.07% |
| 2026-09-17 | 135.3174 | -0.02% |
| 2026-09-16 | 135.3456 | 0.00% |
| 2026-09-15 | 135.3456 | +0.42% |
| 2026-09-14 | 134.7814 | 0.00% |
| 2026-09-13 | 134.7814 | 0.00% |
| 2026-09-12 | 134.7814 | 0.00% |
| Date | 1 JOD in INR | Daily change |
|---|---|---|
| 2026-09-11 | 134.7814 | +0.13% |
| 2026-09-10 | 134.6121 | +0.35% |
| 2026-09-09 | 134.1467 | +0.30% |
| 2026-09-08 | 133.7518 | +0.36% |
| 2026-09-07 | 133.2722 | 0.00% |
| 2026-09-06 | 133.2722 | 0.00% |
| 2026-09-05 | 133.2722 | 0.00% |
| 2026-09-04 | 133.2722 | 0.00% |
| 2026-09-03 | 133.2722 | -0.51% |
| 2026-09-02 | 133.9492 | +0.02% |
| 2026-09-01 | 133.921 | -0.23% |
| 2026-08-31 | 134.2313 | -0.23% |
| 2026-08-30 | 134.5416 | 0.00% |
| 2026-08-29 | 134.5416 | 0.00% |
| 2026-08-28 | 134.5416 | — |
JOD to INR conversion table
1 JOD135.1443 INR
5 JOD675.7216 INR
10 JOD1,351.4433 INR
25 JOD3,378.6082 INR
50 JOD6,757.2164 INR
100 JOD13,514.433 INR
500 JOD67,572.164 INR
1,000 JOD135,144.33 INR
5,000 JOD675,721.64 INR
10,000 JOD1,351,443.3 INR
Get the JOD/INR rate in your app
One GET request returns the latest JOD → 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/JOD/INR"fetch('https://rate-api.com/api/v1/pair/JOD/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JOD = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JOD/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JOD = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JOD/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JOD = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "JOD",
"to": "INR"
},
"rate": 135.1443,
"timestamp": 1790432168,
"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 JODIndian Rupee → Jordanian Dinar0.0073995Convert JOD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.