Convert USD to VUV
US Dollar → Vanuatu Vatu
1 USD = 118.50638 VUV(1 VUV = 0.00843836 USD)
Currency converter
1 USD =
118.5064 VUV
USD to VUV: last 30 days
Over the last 30 days, 1 USD traded between 117.386 and 118.5908 VUV, averaging 118.1461 VUV. The USD/VUV rate is up 0.18% since 2026-08-28.
- 30-day high
- 118.5908
- 2026-09-21
- 30-day low
- 117.386
- 2026-09-12
- 30-day average
- 118.1461
- Days with data: 30
- 30-day change
- +0.18%
- since 2026-08-28
118.5908
117.3862026-08-28 → 2026-09-26
| Date | 1 USD in VUV | Daily change |
|---|---|---|
| 2026-09-26 | 118.5064 | 0.00% |
| 2026-09-25 | 118.5064 | +0.06% |
| 2026-09-24 | 118.4332 | -0.01% |
| 2026-09-23 | 118.4469 | +0.13% |
| 2026-09-22 | 118.2908 | -0.25% |
| 2026-09-21 | 118.5908 | +0.06% |
| 2026-09-20 | 118.5164 | +0.19% |
| 2026-09-19 | 118.2865 | -0.00% |
| 2026-09-18 | 118.2915 | +0.20% |
| 2026-09-17 | 118.0555 | -0.20% |
| 2026-09-16 | 118.2916 | +0.18% |
| 2026-09-15 | 118.0774 | -0.24% |
| 2026-09-14 | 118.3672 | +0.80% |
| 2026-09-13 | 117.4259 | +0.03% |
| 2026-09-12 | 117.386 | -0.49% |
| Date | 1 USD in VUV | Daily change |
|---|---|---|
| 2026-09-11 | 117.9601 | +0.09% |
| 2026-09-10 | 117.8522 | -0.19% |
| 2026-09-09 | 118.0784 | +0.07% |
| 2026-09-08 | 118.0016 | -0.09% |
| 2026-09-07 | 118.1057 | +0.18% |
| 2026-09-06 | 117.8907 | +0.32% |
| 2026-09-05 | 117.5199 | -0.62% |
| 2026-09-04 | 118.2564 | -0.02% |
| 2026-09-03 | 118.282 | -0.05% |
| 2026-09-02 | 118.3469 | +0.03% |
| 2026-09-01 | 118.315 | +0.01% |
| 2026-08-31 | 118.2987 | +0.41% |
| 2026-08-30 | 117.811 | -0.07% |
| 2026-08-29 | 117.894 | -0.34% |
| 2026-08-28 | 118.2985 | — |
USD to VUV conversion table
1 USD118.5064 VUV
5 USD592.5319 VUV
10 USD1,185.0638 VUV
25 USD2,962.6596 VUV
50 USD5,925.3192 VUV
100 USD11,850.638 VUV
500 USD59,253.192 VUV
1,000 USD118,506.38 VUV
5,000 USD592,531.92 VUV
10,000 USD1,185,063.8 VUV
Get the USD/VUV rate in your app
One GET request returns the latest USD → VUV 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/USD/VUV"fetch('https://rate-api.com/api/v1/pair/USD/VUV', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} VUV`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/VUV",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} VUV")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/VUV');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} VUV\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "VUV"
},
"rate": 118.5064,
"timestamp": 1790429335,
"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
VUV to USDVanuatu Vatu → US Dollar0.0084384Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.