Convert VES to GBP
Venezuelan Bolívar → British Pound
1 VES = 0.000884299 GBP(1 GBP = 1,130.8391 VES)
Currency converter
1 VES =
0.0008843 GBP
VES to GBP: last 30 days
Over the last 30 days, 1 VES traded between 0.00087982 and 0.00093281 GBP, averaging 0.0009027 GBP. The VES/GBP rate is down 5.07% since 2026-08-28.
- 30-day high
- 0.00093281
- 2026-08-31
- 30-day low
- 0.00087982
- 2026-09-22
- 30-day average
- 0.0009027
- Days with data: 30
- 30-day change
- -5.07%
- since 2026-08-28
0.00093281
0.000879822026-08-28 → 2026-09-26
| Date | 1 VES in GBP | Daily change |
|---|---|---|
| 2026-09-26 | 0.0008843 | 0.00% |
| 2026-09-25 | 0.0008843 | -0.31% |
| 2026-09-24 | 0.00088704 | +0.31% |
| 2026-09-23 | 0.00088433 | +0.51% |
| 2026-09-22 | 0.00087982 | -0.07% |
| 2026-09-21 | 0.00088043 | -0.44% |
| 2026-09-20 | 0.00088433 | +0.03% |
| 2026-09-19 | 0.00088411 | -0.26% |
| 2026-09-18 | 0.00088638 | +0.29% |
| 2026-09-17 | 0.00088378 | -0.32% |
| 2026-09-16 | 0.00088657 | +0.12% |
| 2026-09-15 | 0.00088554 | -1.19% |
| 2026-09-14 | 0.00089624 | +0.55% |
| 2026-09-13 | 0.00089132 | +0.58% |
| 2026-09-12 | 0.00088616 | -1.73% |
| Date | 1 VES in GBP | Daily change |
|---|---|---|
| 2026-09-11 | 0.00090179 | -0.21% |
| 2026-09-10 | 0.00090364 | -0.03% |
| 2026-09-09 | 0.00090393 | -0.90% |
| 2026-09-08 | 0.00091218 | -0.16% |
| 2026-09-07 | 0.00091366 | -0.35% |
| 2026-09-06 | 0.00091688 | +0.02% |
| 2026-09-05 | 0.0009167 | -0.39% |
| 2026-09-04 | 0.00092025 | -0.49% |
| 2026-09-03 | 0.00092481 | -0.26% |
| 2026-09-02 | 0.00092723 | -0.12% |
| 2026-09-01 | 0.00092831 | -0.48% |
| 2026-08-31 | 0.00093281 | +0.14% |
| 2026-08-30 | 0.00093146 | +0.04% |
| 2026-08-29 | 0.0009311 | -0.05% |
| 2026-08-28 | 0.00093155 | — |
VES to GBP conversion table
1 VES0.0008843 GBP
5 VES0.0044215 GBP
10 VES0.008843 GBP
25 VES0.022107 GBP
50 VES0.044215 GBP
100 VES0.08843 GBP
500 VES0.44215 GBP
1,000 VES0.8843 GBP
5,000 VES4.4215 GBP
10,000 VES8.843 GBP
Get the VES/GBP rate in your app
One GET request returns the latest VES → 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/VES/GBP?precision=6"fetch('https://rate-api.com/api/v1/pair/VES/GBP?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VES = ${data.rate} GBP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VES/GBP?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VES = {data['rate']} GBP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VES/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 VES = {$data['rate']} GBP\n";Example response
{
"success": true,
"pair": {
"from": "VES",
"to": "GBP"
},
"rate": 0.000884,
"timestamp": 1790435119,
"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 VESBritish Pound → Venezuelan Bolívar1,130.8391Convert VES to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.