Convert EUR to IDR
Euro → Indonesian Rupiah
1 EUR = 20,427.22 IDR(1 IDR = 0.0000489543 EUR)
Currency converter
1 EUR =
20,427.22 IDR
EUR to IDR: last 30 days
Over the last 30 days, 1 EUR traded between 20,305.82 and 20,627.787 IDR, averaging 20,458.64 IDR. The EUR/IDR rate is down 0.97% since 2026-08-28.
- 30-day high
- 20,627.787
- 2026-08-28
- 30-day low
- 20,305.82
- 2026-09-23
- 30-day average
- 20,458.64
- Days with data: 30
- 30-day change
- -0.97%
- since 2026-08-28
20,627.787
20,305.822026-08-28 → 2026-09-26
| Date | 1 EUR in IDR | Daily change |
|---|---|---|
| 2026-09-26 | 20,427.22 | 0.00% |
| 2026-09-25 | 20,427.22 | +0.21% |
| 2026-09-24 | 20,384.1 | +0.39% |
| 2026-09-23 | 20,305.82 | -0.59% |
| 2026-09-22 | 20,427.112 | -0.51% |
| 2026-09-21 | 20,531.529 | +0.52% |
| 2026-09-20 | 20,425.166 | 0.00% |
| 2026-09-19 | 20,425.166 | 0.00% |
| 2026-09-18 | 20,425.166 | +0.36% |
| 2026-09-17 | 20,352.468 | -0.16% |
| 2026-09-16 | 20,385.796 | -0.17% |
| 2026-09-15 | 20,420.479 | +0.11% |
| 2026-09-14 | 20,398.97 | -0.03% |
| 2026-09-13 | 20,405.49 | 0.00% |
| 2026-09-12 | 20,405.49 | 0.00% |
| Date | 1 EUR in IDR | Daily change |
|---|---|---|
| 2026-09-11 | 20,405.49 | -0.04% |
| 2026-09-10 | 20,413.995 | +0.25% |
| 2026-09-09 | 20,363.077 | -0.36% |
| 2026-09-08 | 20,437.151 | -0.35% |
| 2026-09-07 | 20,509.274 | +0.06% |
| 2026-09-06 | 20,496.49 | 0.00% |
| 2026-09-05 | 20,496.49 | 0.00% |
| 2026-09-04 | 20,496.49 | -0.00% |
| 2026-09-03 | 20,496.887 | -0.07% |
| 2026-09-02 | 20,510.356 | -0.27% |
| 2026-09-01 | 20,566.521 | +0.15% |
| 2026-08-31 | 20,536.429 | -0.44% |
| 2026-08-30 | 20,627.787 | 0.00% |
| 2026-08-29 | 20,627.787 | 0.00% |
| 2026-08-28 | 20,627.787 | — |
EUR to IDR conversion table
1 EUR20,427.22 IDR
5 EUR102,136.1 IDR
10 EUR204,272.2 IDR
25 EUR510,680.5 IDR
50 EUR1,021,361 IDR
100 EUR2,042,722 IDR
500 EUR10,213,610 IDR
1,000 EUR20,427,220 IDR
5,000 EUR102,136,100 IDR
10,000 EUR204,272,200 IDR
Get the EUR/IDR rate in your app
One GET request returns the latest EUR → IDR 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/EUR/IDR"fetch('https://rate-api.com/api/v1/pair/EUR/IDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} IDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/IDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} IDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/IDR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} IDR\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "IDR"
},
"rate": 20427.22,
"timestamp": 1790447460,
"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
IDR to EURIndonesian Rupiah → Euro0.000048954Convert EUR to other currencies
Convert other currencies to IDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.