Convert GBP to ANG
British Pound → Netherlands Antillean Guilder
1 GBP = 2.372174 ANG(1 ANG = 0.421554 GBP)
Currency converter
1 GBP =
2.3722 ANG
GBP to ANG: last 30 days
Over the last 30 days, 1 GBP traded between 2.3663 and 2.4512 ANG, averaging 2.4207 ANG. The GBP/ANG rate is down 2.97% since 2026-08-28.
- 30-day high
- 2.4512
- 2026-08-31
- 30-day low
- 2.3663
- 2026-09-24
- 30-day average
- 2.4207
- Days with data: 30
- 30-day change
- -2.97%
- since 2026-08-28
2.4512
2.36632026-08-28 → 2026-09-26
| Date | 1 GBP in ANG | Daily change |
|---|---|---|
| 2026-09-26 | 2.3722 | 0.00% |
| 2026-09-25 | 2.3722 | +0.25% |
| 2026-09-24 | 2.3663 | -0.43% |
| 2026-09-23 | 2.3765 | -1.31% |
| 2026-09-22 | 2.4079 | -0.15% |
| 2026-09-21 | 2.4114 | +0.54% |
| 2026-09-20 | 2.3984 | -0.14% |
| 2026-09-19 | 2.4016 | +0.53% |
| 2026-09-18 | 2.3891 | -1.33% |
| 2026-09-17 | 2.4213 | -0.14% |
| 2026-09-16 | 2.4246 | -0.16% |
| 2026-09-15 | 2.4284 | -0.17% |
| 2026-09-14 | 2.4325 | +0.22% |
| 2026-09-13 | 2.4272 | -0.01% |
| 2026-09-12 | 2.4274 | -0.38% |
| Date | 1 GBP in ANG | Daily change |
|---|---|---|
| 2026-09-11 | 2.4365 | +0.02% |
| 2026-09-10 | 2.4361 | -0.16% |
| 2026-09-09 | 2.44 | -0.01% |
| 2026-09-08 | 2.4403 | +0.06% |
| 2026-09-07 | 2.4389 | +0.31% |
| 2026-09-06 | 2.4313 | -0.04% |
| 2026-09-05 | 2.4324 | -0.02% |
| 2026-09-04 | 2.4328 | +0.20% |
| 2026-09-03 | 2.428 | -0.12% |
| 2026-09-02 | 2.431 | -0.21% |
| 2026-09-01 | 2.4362 | -0.61% |
| 2026-08-31 | 2.4512 | +0.43% |
| 2026-08-30 | 2.4409 | -0.07% |
| 2026-08-29 | 2.4426 | -0.09% |
| 2026-08-28 | 2.4448 | — |
GBP to ANG conversion table
1 GBP2.3722 ANG
5 GBP11.8609 ANG
10 GBP23.7217 ANG
25 GBP59.3043 ANG
50 GBP118.6087 ANG
100 GBP237.2174 ANG
500 GBP1,186.0869 ANG
1,000 GBP2,372.1739 ANG
5,000 GBP11,860.869 ANG
10,000 GBP23,721.739 ANG
Get the GBP/ANG rate in your app
One GET request returns the latest GBP → 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/GBP/ANG"fetch('https://rate-api.com/api/v1/pair/GBP/ANG', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 GBP = ${data.rate} ANG`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/GBP/ANG",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 GBP = {data['rate']} ANG")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/GBP/ANG');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 GBP = {$data['rate']} ANG\n";Example response
{
"success": true,
"pair": {
"from": "GBP",
"to": "ANG"
},
"rate": 2.3722,
"timestamp": 1790438351,
"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 GBPNetherlands Antillean Guilder → British Pound0.42155Convert GBP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.