Convert EUR to ISK
Euro → Icelandic Króna
1 EUR = 136.6 ISK(1 ISK = 0.00732064 EUR)
Currency converter
1 EUR =
136.6 ISK
EUR to ISK: last 30 days
Over the last 30 days, 1 EUR traded between 136.6 and 140.8001 ISK, averaging 139.7336 ISK. The EUR/ISK rate is down 2.98% since 2026-08-28.
- 30-day high
- 140.8001
- 2026-09-04
- 30-day low
- 136.6
- 2026-09-25
- 30-day average
- 139.7336
- Days with data: 30
- 30-day change
- -2.98%
- since 2026-08-28
140.8001
136.62026-08-28 → 2026-09-26
| Date | 1 EUR in ISK | Daily change |
|---|---|---|
| 2026-09-26 | 136.6 | 0.00% |
| 2026-09-25 | 136.6 | -1.01% |
| 2026-09-24 | 138 | 0.00% |
| 2026-09-23 | 138 | -0.29% |
| 2026-09-22 | 138.4046 | -0.28% |
| 2026-09-21 | 138.7995 | -0.43% |
| 2026-09-20 | 139.3995 | 0.00% |
| 2026-09-19 | 139.3995 | 0.00% |
| 2026-09-18 | 139.3995 | -0.29% |
| 2026-09-17 | 139.8048 | +0.00% |
| 2026-09-16 | 139.8048 | -0.14% |
| 2026-09-15 | 140.0021 | +0.14% |
| 2026-09-14 | 139.8011 | +0.14% |
| 2026-09-13 | 139.6031 | 0.00% |
| 2026-09-12 | 139.6031 | 0.00% |
| Date | 1 EUR in ISK | Daily change |
|---|---|---|
| 2026-09-11 | 139.6031 | -0.28% |
| 2026-09-10 | 139.9963 | -0.28% |
| 2026-09-09 | 140.3952 | -0.00% |
| 2026-09-08 | 140.4016 | -0.28% |
| 2026-09-07 | 140.8001 | 0.00% |
| 2026-09-06 | 140.8001 | 0.00% |
| 2026-09-05 | 140.8001 | 0.00% |
| 2026-09-04 | 140.8001 | +0.14% |
| 2026-09-03 | 140.5989 | -0.00% |
| 2026-09-02 | 140.6028 | -0.14% |
| 2026-09-01 | 140.7958 | -0.00% |
| 2026-08-31 | 140.798 | +0.00% |
| 2026-08-30 | 140.798 | 0.00% |
| 2026-08-29 | 140.798 | 0.00% |
| 2026-08-28 | 140.798 | — |
EUR to ISK conversion table
1 EUR136.6 ISK
5 EUR683 ISK
10 EUR1,366 ISK
25 EUR3,415 ISK
50 EUR6,830 ISK
100 EUR13,660 ISK
500 EUR68,300 ISK
1,000 EUR136,600 ISK
5,000 EUR683,000 ISK
10,000 EUR1,366,000 ISK
Get the EUR/ISK rate in your app
One GET request returns the latest EUR → ISK 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/ISK"fetch('https://rate-api.com/api/v1/pair/EUR/ISK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} ISK`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/ISK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} ISK")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/ISK');
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']} ISK\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "ISK"
},
"rate": 136.6,
"timestamp": 1790429359,
"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
ISK to EURIcelandic Króna → Euro0.0073206Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.