Convert EUR to XDR
Euro → IMF Special Drawing Rights
1 EUR = 0.839171 XDR(1 XDR = 1.191652 EUR)
Currency converter
1 EUR =
0.83917 XDR
EUR to XDR: last 30 days
Over the last 30 days, 1 EUR traded between 0.81028 and 0.84928 XDR, averaging 0.84257 XDR. The EUR/XDR rate is down 1.19% since 2026-08-28.
- 30-day high
- 0.84928
- 2026-08-28
- 30-day low
- 0.81028
- 2026-09-18
- 30-day average
- 0.84257
- Days with data: 30
- 30-day change
- -1.19%
- since 2026-08-28
0.84928
0.810282026-08-28 → 2026-09-26
| Date | 1 EUR in XDR | Daily change |
|---|---|---|
| 2026-09-26 | 0.83917 | 0.00% |
| 2026-09-25 | 0.83917 | +0.51% |
| 2026-09-24 | 0.83488 | -0.16% |
| 2026-09-23 | 0.83622 | -0.34% |
| 2026-09-22 | 0.83908 | -0.36% |
| 2026-09-21 | 0.84211 | +0.61% |
| 2026-09-20 | 0.83696 | -0.15% |
| 2026-09-19 | 0.83821 | +3.45% |
| 2026-09-18 | 0.81028 | -3.36% |
| 2026-09-17 | 0.83847 | -0.50% |
| 2026-09-16 | 0.84272 | +0.04% |
| 2026-09-15 | 0.84238 | +0.04% |
| 2026-09-14 | 0.84201 | -0.28% |
| 2026-09-13 | 0.84436 | -0.00% |
| 2026-09-12 | 0.84436 | +0.04% |
| Date | 1 EUR in XDR | Daily change |
|---|---|---|
| 2026-09-11 | 0.844 | -0.18% |
| 2026-09-10 | 0.84549 | -0.40% |
| 2026-09-09 | 0.84886 | +0.27% |
| 2026-09-08 | 0.84657 | -0.07% |
| 2026-09-07 | 0.84716 | +0.07% |
| 2026-09-06 | 0.84656 | -0.01% |
| 2026-09-05 | 0.84663 | -0.15% |
| 2026-09-04 | 0.84789 | -0.15% |
| 2026-09-03 | 0.84915 | +0.38% |
| 2026-09-02 | 0.84596 | -0.08% |
| 2026-09-01 | 0.84667 | +0.12% |
| 2026-08-31 | 0.84562 | -0.31% |
| 2026-08-30 | 0.84826 | -0.03% |
| 2026-08-29 | 0.84855 | -0.09% |
| 2026-08-28 | 0.84928 | — |
EUR to XDR conversion table
1 EUR0.83917 XDR
5 EUR4.1959 XDR
10 EUR8.3917 XDR
25 EUR20.9793 XDR
50 EUR41.9586 XDR
100 EUR83.9171 XDR
500 EUR419.5857 XDR
1,000 EUR839.1713 XDR
5,000 EUR4,195.8567 XDR
10,000 EUR8,391.7134 XDR
Get the EUR/XDR rate in your app
One GET request returns the latest EUR → XDR 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/XDR"fetch('https://rate-api.com/api/v1/pair/EUR/XDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} XDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/XDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} XDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/XDR');
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']} XDR\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "XDR"
},
"rate": 0.8392,
"timestamp": 1790429397,
"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
XDR to EURIMF Special Drawing Rights → Euro1.1917Convert EUR to other currencies
Convert other currencies to XDR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.