Convert USD to NAD
US Dollar → Namibian Dollar
1 USD = 16.293782 NAD(1 NAD = 0.0613731 USD)
Currency converter
1 USD =
16.2938 NAD
USD to NAD: last 30 days
Over the last 30 days, 1 USD traded between 15.9597 and 16.4367 NAD, averaging 16.163 NAD. The USD/NAD rate is up 1.88% since 2026-08-28.
- 30-day high
- 16.4367
- 2026-09-24
- 30-day low
- 15.9597
- 2026-09-05
- 30-day average
- 16.163
- Days with data: 30
- 30-day change
- +1.88%
- since 2026-08-28
16.4367
15.95972026-08-28 → 2026-09-26
| Date | 1 USD in NAD | Daily change |
|---|---|---|
| 2026-09-26 | 16.2938 | 0.00% |
| 2026-09-25 | 16.2938 | -0.87% |
| 2026-09-24 | 16.4367 | +0.55% |
| 2026-09-23 | 16.3471 | +0.59% |
| 2026-09-22 | 16.2506 | +0.15% |
| 2026-09-21 | 16.2255 | -0.31% |
| 2026-09-20 | 16.2756 | +0.14% |
| 2026-09-19 | 16.2535 | +0.08% |
| 2026-09-18 | 16.24 | -0.63% |
| 2026-09-17 | 16.343 | +0.71% |
| 2026-09-16 | 16.2272 | -0.30% |
| 2026-09-15 | 16.2757 | +0.50% |
| 2026-09-14 | 16.1939 | +0.44% |
| 2026-09-13 | 16.1224 | -0.09% |
| 2026-09-12 | 16.137 | -0.50% |
| Date | 1 USD in NAD | Daily change |
|---|---|---|
| 2026-09-11 | 16.2188 | +1.11% |
| 2026-09-10 | 16.0405 | +0.25% |
| 2026-09-09 | 16.0004 | +0.05% |
| 2026-09-08 | 15.9928 | +0.05% |
| 2026-09-07 | 15.9848 | +0.12% |
| 2026-09-06 | 15.9662 | +0.04% |
| 2026-09-05 | 15.9597 | -0.17% |
| 2026-09-04 | 15.9861 | -0.36% |
| 2026-09-03 | 16.0443 | -0.81% |
| 2026-09-02 | 16.1753 | +0.38% |
| 2026-09-01 | 16.1142 | -0.36% |
| 2026-08-31 | 16.1727 | +0.04% |
| 2026-08-30 | 16.1656 | +0.03% |
| 2026-08-29 | 16.1607 | +1.05% |
| 2026-08-28 | 15.9932 | — |
USD to NAD conversion table
1 USD16.2938 NAD
5 USD81.4689 NAD
10 USD162.9378 NAD
25 USD407.3446 NAD
50 USD814.6891 NAD
100 USD1,629.3782 NAD
500 USD8,146.8912 NAD
1,000 USD16,293.782 NAD
5,000 USD81,468.912 NAD
10,000 USD162,937.82 NAD
Get the USD/NAD rate in your app
One GET request returns the latest USD → NAD 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/NAD"fetch('https://rate-api.com/api/v1/pair/USD/NAD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} NAD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/NAD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} NAD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/NAD');
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']} NAD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "NAD"
},
"rate": 16.2938,
"timestamp": 1790429348,
"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
NAD to USDNamibian Dollar → US Dollar0.061373Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.