Convert VND to GBP
Vietnamese Dong → British Pound
1 VND = 0.0000290442 GBP(1 GBP = 34,430.32 VND)
Currency converter
1 VND =
0.000029044 GBP
VND to GBP: last 30 days
Over the last 30 days, 1 VND traded between 0.000028192 and 0.000029081 GBP, averaging 0.000028571 GBP. The VND/GBP rate is up 2.78% since 2026-08-28.
- 30-day high
- 0.000029081
- 2026-09-24
- 30-day low
- 0.000028192
- 2026-08-29
- 30-day average
- 0.000028571
- Days with data: 30
- 30-day change
- +2.78%
- since 2026-08-28
0.000029081
0.0000281922026-08-28 → 2026-09-26
| Date | 1 VND in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.000029044 | 0.00% |
| 2026-09-25 | 0.000029044 | -0.13% |
| 2026-09-24 | 0.000029081 | +0.21% |
| 2026-09-23 | 0.000029019 | +0.71% |
| 2026-09-22 | 0.000028814 | +0.43% |
| 2026-09-21 | 0.000028691 | -0.39% |
| 2026-09-20 | 0.000028804 | -0.06% |
| 2026-09-19 | 0.000028821 | -0.02% |
| 2026-09-18 | 0.000028826 | +0.23% |
| 2026-09-17 | 0.000028761 | +0.61% |
| 2026-09-16 | 0.000028586 | +0.33% |
| 2026-09-15 | 0.000028492 | -0.23% |
| 2026-09-14 | 0.000028557 | +0.01% |
| 2026-09-13 | 0.000028556 | -0.35% |
| 2026-09-12 | 0.000028655 | +0.30% |
| Date | 1 VND in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.000028569 | +0.15% |
| 2026-09-10 | 0.000028527 | +0.51% |
| 2026-09-09 | 0.000028383 | -0.04% |
| 2026-09-08 | 0.000028393 | +0.10% |
| 2026-09-07 | 0.000028365 | +0.08% |
| 2026-09-06 | 0.000028342 | -0.03% |
| 2026-09-05 | 0.000028352 | +0.06% |
| 2026-09-04 | 0.000028334 | -0.12% |
| 2026-09-03 | 0.000028369 | -0.19% |
| 2026-09-02 | 0.000028423 | +0.38% |
| 2026-09-01 | 0.000028315 | +0.01% |
| 2026-08-31 | 0.000028312 | +0.29% |
| 2026-08-30 | 0.000028231 | +0.14% |
| 2026-08-29 | 0.000028192 | -0.24% |
| 2026-08-28 | 0.000028259 | — |
VND to GBP conversion table
1 VND0.000029044 GBP
5 VND0.00014522 GBP
10 VND0.00029044 GBP
25 VND0.0007261 GBP
50 VND0.0014522 GBP
100 VND0.0029044 GBP
500 VND0.014522 GBP
1,000 VND0.029044 GBP
5,000 VND0.14522 GBP
10,000 VND0.29044 GBP
Get the VND/GBP rate in your app
One GET request returns the latest VND → GBP 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/VND/GBP?precision=6"fetch('https://rate-api.com/api/v1/pair/VND/GBP?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VND = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VND/GBP?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VND = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VND/GBP?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 VND = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "VND",
"to": "GBP"
},
"rate": 2.9e-5,
"timestamp": 1790435133,
"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
GBP to VNDBritish Pound → Vietnamese Dong34,430.32Convert VND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.