Convert NAD to EUR
Namibian Dollar → Euro
1 NAD = 0.0538219 EUR(1 EUR = 18.5798 NAD)
Currency converter
1 NAD =
0.053822 EUR
NAD to EUR: last 30 days
Over the last 30 days, 1 NAD traded between 0.053131 and 0.053913 EUR, averaging 0.053574 EUR. The NAD/EUR rate is up 0.22% since 2026-08-28.
- 30-day high
- 0.053913
- 2026-09-05
- 30-day low
- 0.053131
- 2026-08-30
- 30-day average
- 0.053574
- Days with data: 30
- 30-day change
- +0.22%
- since 2026-08-28
0.053913
0.0531312026-08-28 → 2026-09-26
| Date | 1 NAD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.053822 | 0.00% |
| 2026-09-25 | 0.053822 | +0.56% |
| 2026-09-24 | 0.053523 | -0.16% |
| 2026-09-23 | 0.053609 | -0.14% |
| 2026-09-22 | 0.053682 | +0.08% |
| 2026-09-21 | 0.053639 | +0.05% |
| 2026-09-20 | 0.053614 | -0.14% |
| 2026-09-19 | 0.053687 | -0.08% |
| 2026-09-18 | 0.053732 | +0.82% |
| 2026-09-17 | 0.053295 | -0.23% |
| 2026-09-16 | 0.053415 | +0.32% |
| 2026-09-15 | 0.053247 | -0.40% |
| 2026-09-14 | 0.05346 | -0.09% |
| 2026-09-13 | 0.053507 | +0.09% |
| 2026-09-12 | 0.053459 | +0.51% |
| Date | 1 NAD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.053189 | -0.89% |
| 2026-09-10 | 0.053669 | +0.06% |
| 2026-09-09 | 0.053637 | -0.37% |
| 2026-09-08 | 0.053838 | +0.02% |
| 2026-09-07 | 0.053829 | -0.12% |
| 2026-09-06 | 0.053891 | -0.04% |
| 2026-09-05 | 0.053913 | +0.17% |
| 2026-09-04 | 0.053824 | +0.30% |
| 2026-09-03 | 0.053661 | +0.50% |
| 2026-09-02 | 0.053397 | -0.27% |
| 2026-09-01 | 0.053543 | +0.41% |
| 2026-08-31 | 0.053323 | +0.36% |
| 2026-08-30 | 0.053131 | -0.03% |
| 2026-08-29 | 0.053147 | -1.04% |
| 2026-08-28 | 0.053703 | — |
NAD to EUR conversion table
1 NAD0.053822 EUR
5 NAD0.26911 EUR
10 NAD0.53822 EUR
25 NAD1.3455 EUR
50 NAD2.6911 EUR
100 NAD5.3822 EUR
500 NAD26.9109 EUR
1,000 NAD53.8219 EUR
5,000 NAD269.1095 EUR
10,000 NAD538.2189 EUR
Get the NAD/EUR rate in your app
One GET request returns the latest NAD → 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/NAD/EUR"fetch('https://rate-api.com/api/v1/pair/NAD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 NAD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/NAD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 NAD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/NAD/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 NAD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "NAD",
"to": "EUR"
},
"rate": 0.0538,
"timestamp": 1790435152,
"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 NADEuro → Namibian Dollar18.5798Convert NAD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.