Convert USD to XDR
US Dollar → IMF Special Drawing Rights
1 USD = 0.735922 XDR(1 XDR = 1.358841 USD)
Currency converter
1 USD =
0.73592 XDR
USD to XDR: last 30 days
Over the last 30 days, 1 USD traded between 0.70705 and 0.73592 XDR, averaging 0.72955 XDR. The USD/XDR rate is up 0.89% since 2026-08-28.
- 30-day high
- 0.73592
- 2026-09-25
- 30-day low
- 0.70705
- 2026-09-18
- 30-day average
- 0.72955
- Days with data: 30
- 30-day change
- +0.89%
- since 2026-08-28
0.73592
0.707052026-08-28 → 2026-09-26
| Date | 1 USD in XDR | Daily change |
|---|---|---|
| 2026-09-26 | 0.73592 | 0.00% |
| 2026-09-25 | 0.73592 | +0.20% |
| 2026-09-24 | 0.73448 | +0.23% |
| 2026-09-23 | 0.73282 | +0.11% |
| 2026-09-22 | 0.73199 | -0.12% |
| 2026-09-21 | 0.7329 | +0.35% |
| 2026-09-20 | 0.73033 | -0.15% |
| 2026-09-19 | 0.73142 | +3.45% |
| 2026-09-18 | 0.70705 | -3.18% |
| 2026-09-17 | 0.73031 | -0.02% |
| 2026-09-16 | 0.73045 | +0.06% |
| 2026-09-15 | 0.73003 | +0.15% |
| 2026-09-14 | 0.72895 | +0.08% |
| 2026-09-13 | 0.7284 | -0.00% |
| 2026-09-12 | 0.7284 | +0.04% |
| Date | 1 USD in XDR | Daily change |
|---|---|---|
| 2026-09-11 | 0.72809 | +0.03% |
| 2026-09-10 | 0.72787 | -0.09% |
| 2026-09-09 | 0.72851 | -0.06% |
| 2026-09-08 | 0.72892 | -0.00% |
| 2026-09-07 | 0.72893 | +0.07% |
| 2026-09-06 | 0.72841 | -0.01% |
| 2026-09-05 | 0.72847 | -0.15% |
| 2026-09-04 | 0.72956 | -0.21% |
| 2026-09-03 | 0.73109 | +0.06% |
| 2026-09-02 | 0.73066 | +0.02% |
| 2026-09-01 | 0.73051 | +0.18% |
| 2026-08-31 | 0.72923 | +0.09% |
| 2026-08-30 | 0.72857 | -0.03% |
| 2026-08-29 | 0.72881 | -0.09% |
| 2026-08-28 | 0.72944 | — |
USD to XDR conversion table
1 USD0.73592 XDR
5 USD3.6796 XDR
10 USD7.3592 XDR
25 USD18.398 XDR
50 USD36.7961 XDR
100 USD73.5922 XDR
500 USD367.9608 XDR
1,000 USD735.9216 XDR
5,000 USD3,679.6078 XDR
10,000 USD7,359.2155 XDR
Get the USD/XDR rate in your app
One GET request returns the latest USD → 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/USD/XDR"fetch('https://rate-api.com/api/v1/pair/USD/XDR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} XDR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/XDR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} XDR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/XDR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} XDR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "XDR"
},
"rate": 0.7359,
"timestamp": 1790429337,
"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 USDIMF Special Drawing Rights → US Dollar1.3588Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.