Convert IDR to JPY
Indonesian Rupiah → Japanese Yen
1 IDR = 0.00879709 JPY(1 JPY = 113.67401 IDR)
Currency converter
1 IDR =
0.0087971 JPY
IDR to JPY: last 30 days
Over the last 30 days, 1 IDR traded between 0.0087508 and 0.0090256 JPY, averaging 0.0088479 JPY. The IDR/JPY rate is down 2.39% since 2026-08-28.
- 30-day high
- 0.0090256
- 2026-09-01
- 30-day low
- 0.0087508
- 2026-09-11
- 30-day average
- 0.0088479
- Days with data: 30
- 30-day change
- -2.39%
- since 2026-08-28
0.0090256
0.00875082026-08-28 → 2026-09-26
| Date | 1 IDR in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0087971 | 0.00% |
| 2026-09-25 | 0.0087971 | -0.69% |
| 2026-09-24 | 0.0088584 | -0.18% |
| 2026-09-23 | 0.0088743 | +0.61% |
| 2026-09-22 | 0.0088204 | +0.22% |
| 2026-09-21 | 0.0088013 | -0.65% |
| 2026-09-20 | 0.0088588 | 0.00% |
| 2026-09-19 | 0.0088588 | 0.00% |
| 2026-09-18 | 0.0088588 | +0.87% |
| 2026-09-17 | 0.0087826 | +0.09% |
| 2026-09-16 | 0.0087748 | +0.19% |
| 2026-09-15 | 0.0087585 | +0.08% |
| 2026-09-14 | 0.0087514 | +0.01% |
| 2026-09-13 | 0.0087508 | 0.00% |
| 2026-09-12 | 0.0087508 | 0.00% |
| Date | 1 IDR in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 0.0087508 | -0.26% |
| 2026-09-10 | 0.0087732 | +0.03% |
| 2026-09-09 | 0.0087703 | +0.02% |
| 2026-09-08 | 0.0087685 | -0.01% |
| 2026-09-07 | 0.0087692 | -1.02% |
| 2026-09-06 | 0.0088597 | 0.00% |
| 2026-09-05 | 0.0088597 | 0.00% |
| 2026-09-04 | 0.0088597 | +0.22% |
| 2026-09-03 | 0.0088406 | -1.87% |
| 2026-09-02 | 0.0090093 | -0.18% |
| 2026-09-01 | 0.0090256 | +0.07% |
| 2026-08-31 | 0.0090192 | +0.07% |
| 2026-08-30 | 0.0090128 | 0.00% |
| 2026-08-29 | 0.0090128 | 0.00% |
| 2026-08-28 | 0.0090128 | — |
IDR to JPY conversion table
1 IDR0.0087971 JPY
5 IDR0.043985 JPY
10 IDR0.087971 JPY
25 IDR0.21993 JPY
50 IDR0.43985 JPY
100 IDR0.87971 JPY
500 IDR4.3985 JPY
1,000 IDR8.7971 JPY
5,000 IDR43.9854 JPY
10,000 IDR87.9709 JPY
Get the IDR/JPY rate in your app
One GET request returns the latest IDR → JPY 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/IDR/JPY?precision=6"fetch('https://rate-api.com/api/v1/pair/IDR/JPY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 IDR = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/IDR/JPY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 IDR = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/IDR/JPY?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 IDR = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "IDR",
"to": "JPY"
},
"rate": 0.008797,
"timestamp": 1790435097,
"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
JPY to IDRJapanese Yen → Indonesian Rupiah113.674Convert IDR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.