Convert JPY to INR
Japanese Yen → Indian Rupee
1 JPY = 0.608016 INR(1 INR = 1.644693 JPY)
Currency converter
1 JPY =
0.60802 INR
JPY to INR: last 30 days
Over the last 30 days, 1 JPY traded between 0.59284 and 0.62054 INR, averaging 0.60866 INR. The JPY/INR rate is up 1.78% since 2026-08-28.
- 30-day high
- 0.62054
- 2026-09-09
- 30-day low
- 0.59284
- 2026-09-01
- 30-day average
- 0.60866
- Days with data: 30
- 30-day change
- +1.78%
- since 2026-08-28
0.62054
0.592842026-08-28 → 2026-09-26
| Date | 1 JPY in INR | Daily change |
|---|---|---|
| 2026-09-26 | 0.60802 | 0.00% |
| 2026-09-25 | 0.60802 | +0.65% |
| 2026-09-24 | 0.60407 | -0.36% |
| 2026-09-23 | 0.60627 | -0.31% |
| 2026-09-22 | 0.60816 | -0.18% |
| 2026-09-21 | 0.60927 | +0.33% |
| 2026-09-20 | 0.60726 | 0.00% |
| 2026-09-19 | 0.60726 | 0.00% |
| 2026-09-18 | 0.60726 | -1.46% |
| 2026-09-17 | 0.61622 | -0.43% |
| 2026-09-16 | 0.6189 | -0.03% |
| 2026-09-15 | 0.6191 | +0.13% |
| 2026-09-14 | 0.61831 | -0.33% |
| 2026-09-13 | 0.62036 | 0.00% |
| 2026-09-12 | 0.62036 | 0.00% |
| Date | 1 JPY in INR | Daily change |
|---|---|---|
| 2026-09-11 | 0.62036 | +0.22% |
| 2026-09-10 | 0.61902 | -0.25% |
| 2026-09-09 | 0.62054 | +0.97% |
| 2026-09-08 | 0.61458 | +0.65% |
| 2026-09-07 | 0.6106 | +0.97% |
| 2026-09-06 | 0.60474 | 0.00% |
| 2026-09-05 | 0.60474 | 0.00% |
| 2026-09-04 | 0.60474 | -0.15% |
| 2026-09-03 | 0.60567 | +1.78% |
| 2026-09-02 | 0.59505 | +0.37% |
| 2026-09-01 | 0.59284 | -0.50% |
| 2026-08-31 | 0.59582 | -0.26% |
| 2026-08-30 | 0.59738 | 0.00% |
| 2026-08-29 | 0.59738 | 0.00% |
| 2026-08-28 | 0.59738 | — |
JPY to INR conversion table
1 JPY0.60802 INR
5 JPY3.0401 INR
10 JPY6.0802 INR
25 JPY15.2004 INR
50 JPY30.4008 INR
100 JPY60.8016 INR
500 JPY304.0081 INR
1,000 JPY608.0161 INR
5,000 JPY3,040.0807 INR
10,000 JPY6,080.1614 INR
Get the JPY/INR rate in your app
One GET request returns the latest JPY → 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/JPY/INR"fetch('https://rate-api.com/api/v1/pair/JPY/INR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} INR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/INR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} INR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/INR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JPY = {$data['rate']} INR\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "INR"
},
"rate": 0.608,
"timestamp": 1790447444,
"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 JPYIndian Rupee → Japanese Yen1.6447Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.