Convert EUR to VES
Euro → Venezuelan Bolívar
1 EUR = 973.03054 VES(1 VES = 0.00102772 EUR)
Currency converter
1 EUR =
973.0305 VES
EUR to VES: last 30 days
Over the last 30 days, 1 EUR traded between 918.1721 and 974.9769 VES, averaging 951.2513 VES. The EUR/VES rate is up 5.74% since 2026-08-28.
- 30-day high
- 974.9769
- 2026-09-22
- 30-day low
- 918.1721
- 2026-08-31
- 30-day average
- 951.2513
- Days with data: 30
- 30-day change
- +5.74%
- since 2026-08-28
974.9769
918.17212026-08-28 → 2026-09-26
| Date | 1 EUR in VES | Daily change |
|---|---|---|
| 2026-09-26 | 973.0305 | 0.00% |
| 2026-09-25 | 973.0305 | +0.38% |
| 2026-09-24 | 969.3537 | -0.26% |
| 2026-09-23 | 971.9234 | -0.31% |
| 2026-09-22 | 974.9769 | +0.07% |
| 2026-09-21 | 974.2984 | +0.33% |
| 2026-09-20 | 971.1273 | -0.03% |
| 2026-09-19 | 971.3719 | +0.26% |
| 2026-09-18 | 968.8914 | -0.23% |
| 2026-09-17 | 971.1715 | +0.42% |
| 2026-09-16 | 967.0844 | +0.07% |
| 2026-09-15 | 966.4087 | +1.19% |
| 2026-09-14 | 955.0653 | -0.80% |
| 2026-09-13 | 962.7941 | -0.58% |
| 2026-09-12 | 968.4051 | +1.76% |
| Date | 1 EUR in VES | Daily change |
|---|---|---|
| 2026-09-11 | 951.6196 | +0.09% |
| 2026-09-10 | 950.7703 | +0.05% |
| 2026-09-09 | 950.2764 | +1.10% |
| 2026-09-08 | 939.9486 | -0.02% |
| 2026-09-07 | 940.1033 | +0.35% |
| 2026-09-06 | 936.8482 | -0.02% |
| 2026-09-05 | 937.0388 | +0.39% |
| 2026-09-04 | 933.4198 | +0.31% |
| 2026-09-03 | 930.5207 | +0.48% |
| 2026-09-02 | 926.0952 | +0.37% |
| 2026-09-01 | 922.7028 | +0.49% |
| 2026-08-31 | 918.1721 | -0.23% |
| 2026-08-30 | 920.2772 | -0.04% |
| 2026-08-29 | 920.6285 | +0.05% |
| 2026-08-28 | 920.1839 | — |
EUR to VES conversion table
1 EUR973.0305 VES
5 EUR4,865.1527 VES
10 EUR9,730.3054 VES
25 EUR24,325.763 VES
50 EUR48,651.527 VES
100 EUR97,303.054 VES
500 EUR486,515.27 VES
1,000 EUR973,030.54 VES
5,000 EUR4,865,152.7 VES
10,000 EUR9,730,305.4 VES
Get the EUR/VES rate in your app
One GET request returns the latest EUR → VES 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/VES"fetch('https://rate-api.com/api/v1/pair/EUR/VES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} VES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/VES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} VES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/VES');
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']} VES\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "VES"
},
"rate": 973.0305,
"timestamp": 1790439652,
"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
VES to EURVenezuelan Bolívar → Euro0.0010277Convert EUR to other currencies
Convert other currencies to VES
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.