Convert XDR to USD
IMF Special Drawing Rights → US Dollar
1 XDR = 1.358841 USD(1 USD = 0.735922 XDR)
Currency converter
1 XDR =
1.3588 USD
XDR to USD: last 30 days
Over the last 30 days, 1 XDR traded between 1.3588 and 1.4143 USD, averaging 1.3708 USD. The XDR/USD rate is down 0.88% since 2026-08-28.
- 30-day high
- 1.4143
- 2026-09-18
- 30-day low
- 1.3588
- 2026-09-25
- 30-day average
- 1.3708
- Days with data: 30
- 30-day change
- -0.88%
- since 2026-08-28
1.4143
1.35882026-08-28 → 2026-09-26
| Date | 1 XDR in USD | Daily change |
|---|---|---|
| 2026-09-26 | 1.3588 | 0.00% |
| 2026-09-25 | 1.3588 | -0.20% |
| 2026-09-24 | 1.3615 | -0.23% |
| 2026-09-23 | 1.3646 | -0.11% |
| 2026-09-22 | 1.3661 | +0.12% |
| 2026-09-21 | 1.3644 | -0.35% |
| 2026-09-20 | 1.3692 | +0.15% |
| 2026-09-19 | 1.3672 | -3.33% |
| 2026-09-18 | 1.4143 | +3.29% |
| 2026-09-17 | 1.3693 | +0.02% |
| 2026-09-16 | 1.369 | -0.06% |
| 2026-09-15 | 1.3698 | -0.15% |
| 2026-09-14 | 1.3718 | -0.08% |
| 2026-09-13 | 1.3729 | +0.00% |
| 2026-09-12 | 1.3729 | -0.04% |
| Date | 1 XDR in USD | Daily change |
|---|---|---|
| 2026-09-11 | 1.3735 | -0.03% |
| 2026-09-10 | 1.3739 | +0.09% |
| 2026-09-09 | 1.3727 | +0.06% |
| 2026-09-08 | 1.3719 | +0.00% |
| 2026-09-07 | 1.3719 | -0.07% |
| 2026-09-06 | 1.3729 | +0.01% |
| 2026-09-05 | 1.3727 | +0.15% |
| 2026-09-04 | 1.3707 | +0.21% |
| 2026-09-03 | 1.3678 | -0.06% |
| 2026-09-02 | 1.3686 | -0.02% |
| 2026-09-01 | 1.3689 | -0.17% |
| 2026-08-31 | 1.3713 | -0.09% |
| 2026-08-30 | 1.3726 | +0.03% |
| 2026-08-29 | 1.3721 | +0.09% |
| 2026-08-28 | 1.3709 | — |
XDR to USD conversion table
1 XDR1.3588 USD
5 XDR6.7942 USD
10 XDR13.5884 USD
25 XDR33.971 USD
50 XDR67.942 USD
100 XDR135.8841 USD
500 XDR679.4203 USD
1,000 XDR1,358.8405 USD
5,000 XDR6,794.2025 USD
10,000 XDR13,588.405 USD
Get the XDR/USD rate in your app
One GET request returns the latest XDR → USD 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/XDR/USD"fetch('https://rate-api.com/api/v1/pair/XDR/USD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 XDR = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/XDR/USD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 XDR = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/XDR/USD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 XDR = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "XDR",
"to": "USD"
},
"rate": 1.3588,
"timestamp": 1790432085,
"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
USD to XDRUS Dollar → IMF Special Drawing Rights0.73592Convert XDR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.