Convert EUR to ANG
Euro → Netherlands Antillean Guilder
1 EUR = 2.041137 ANG(1 ANG = 0.489923 EUR)
Currency converter
1 EUR =
2.0411 ANG
EUR to ANG: last 30 days
Over the last 30 days, 1 EUR traded between 2.0347 and 2.0994 ANG, averaging 2.0777 ANG. The EUR/ANG rate is down 2.60% since 2026-08-28.
- 30-day high
- 2.0994
- 2026-08-31
- 30-day low
- 2.0347
- 2026-09-24
- 30-day average
- 2.0777
- Days with data: 30
- 30-day change
- -2.60%
- since 2026-08-28
2.0994
2.03472026-08-28 → 2026-09-26
| Date | 1 EUR in ANG | Daily change |
|---|---|---|
| 2026-09-26 | 2.0411 | 0.00% |
| 2026-09-25 | 2.0411 | +0.32% |
| 2026-09-24 | 2.0347 | -0.39% |
| 2026-09-23 | 2.0426 | -1.11% |
| 2026-09-22 | 2.0655 | -0.14% |
| 2026-09-21 | 2.0685 | +0.43% |
| 2026-09-20 | 2.0597 | -0.14% |
| 2026-09-19 | 2.0625 | +0.53% |
| 2026-09-18 | 2.0518 | -1.27% |
| 2026-09-17 | 2.0782 | -0.03% |
| 2026-09-16 | 2.0789 | +0.03% |
| 2026-09-15 | 2.0782 | -0.19% |
| 2026-09-14 | 2.0821 | -0.04% |
| 2026-09-13 | 2.0829 | -0.01% |
| 2026-09-12 | 2.0831 | -0.38% |
| Date | 1 EUR in ANG | Daily change |
|---|---|---|
| 2026-09-11 | 2.0909 | -0.10% |
| 2026-09-10 | 2.093 | -0.14% |
| 2026-09-09 | 2.0959 | +0.17% |
| 2026-09-08 | 2.0923 | -0.12% |
| 2026-09-07 | 2.0948 | +0.30% |
| 2026-09-06 | 2.0885 | -0.04% |
| 2026-09-05 | 2.0894 | -0.02% |
| 2026-09-04 | 2.0897 | +0.02% |
| 2026-09-03 | 2.0894 | +0.09% |
| 2026-09-02 | 2.0875 | +0.04% |
| 2026-09-01 | 2.0867 | -0.61% |
| 2026-08-31 | 2.0994 | +0.34% |
| 2026-08-30 | 2.0923 | -0.07% |
| 2026-08-29 | 2.0938 | -0.09% |
| 2026-08-28 | 2.0957 | — |
EUR to ANG conversion table
1 EUR2.0411 ANG
5 EUR10.2057 ANG
10 EUR20.4114 ANG
25 EUR51.0284 ANG
50 EUR102.0569 ANG
100 EUR204.1137 ANG
500 EUR1,020.5685 ANG
1,000 EUR2,041.137 ANG
5,000 EUR10,205.685 ANG
10,000 EUR20,411.37 ANG
Get the EUR/ANG rate in your app
One GET request returns the latest EUR → ANG 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/ANG"fetch('https://rate-api.com/api/v1/pair/EUR/ANG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} ANG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/ANG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} ANG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/ANG');
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']} ANG\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "ANG"
},
"rate": 2.0411,
"timestamp": 1790429363,
"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
ANG to EURNetherlands Antillean Guilder → Euro0.48992Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.