Convert IQD to EUR
Iraqi Dinar → Euro
1 IQD = 0.000669389 EUR(1 EUR = 1,493.899 IQD)
Currency converter
1 IQD =
0.00066939 EUR
IQD to EUR: last 30 days
Over the last 30 days, 1 IQD traded between 0.00065494 and 0.00066939 EUR, averaging 0.00066048 EUR. The IQD/EUR rate is up 2.14% since 2026-08-28.
- 30-day high
- 0.00066939
- 2026-09-25
- 30-day low
- 0.00065494
- 2026-08-31
- 30-day average
- 0.00066048
- Days with data: 30
- 30-day change
- +2.14%
- since 2026-08-28
0.00066939
0.000654942026-08-28 → 2026-09-26
| Date | 1 IQD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.00066939 | 0.00% |
| 2026-09-25 | 0.00066939 | +0.05% |
| 2026-09-24 | 0.00066904 | +0.18% |
| 2026-09-23 | 0.00066786 | +0.34% |
| 2026-09-22 | 0.00066557 | +0.11% |
| 2026-09-21 | 0.00066484 | -0.18% |
| 2026-09-20 | 0.00066601 | +0.01% |
| 2026-09-19 | 0.00066596 | +0.02% |
| 2026-09-18 | 0.00066585 | +0.73% |
| 2026-09-17 | 0.00066104 | +0.03% |
| 2026-09-16 | 0.00066085 | -0.07% |
| 2026-09-15 | 0.00066135 | +0.18% |
| 2026-09-14 | 0.00066018 | +0.29% |
| 2026-09-13 | 0.00065826 | +0.07% |
| 2026-09-12 | 0.00065778 | -0.06% |
| Date | 1 IQD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.00065819 | +0.16% |
| 2026-09-10 | 0.00065715 | +0.19% |
| 2026-09-09 | 0.00065589 | -0.21% |
| 2026-09-08 | 0.00065725 | +0.10% |
| 2026-09-07 | 0.00065662 | -0.02% |
| 2026-09-06 | 0.00065673 | +0.10% |
| 2026-09-05 | 0.0006561 | -0.06% |
| 2026-09-04 | 0.00065649 | -0.23% |
| 2026-09-03 | 0.00065801 | -0.12% |
| 2026-09-02 | 0.00065878 | +0.04% |
| 2026-09-01 | 0.00065854 | +0.55% |
| 2026-08-31 | 0.00065494 | -0.09% |
| 2026-08-30 | 0.00065554 | +0.01% |
| 2026-08-29 | 0.00065544 | +0.01% |
| 2026-08-28 | 0.00065535 | — |
IQD to EUR conversion table
1 IQD0.00066939 EUR
5 IQD0.0033469 EUR
10 IQD0.0066939 EUR
25 IQD0.016735 EUR
50 IQD0.033469 EUR
100 IQD0.066939 EUR
500 IQD0.33469 EUR
1,000 IQD0.66939 EUR
5,000 IQD3.3469 EUR
10,000 IQD6.6939 EUR
Get the IQD/EUR rate in your app
One GET request returns the latest IQD → EUR 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/IQD/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/IQD/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 IQD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/IQD/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 IQD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/IQD/EUR?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 IQD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "IQD",
"to": "EUR"
},
"rate": 0.000669,
"timestamp": 1790435130,
"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
EUR to IQDEuro → Iraqi Dinar1,493.899Convert IQD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.