Convert VND to JPY
Vietnamese Dong → Japanese Yen
1 VND = 0.00606571 JPY(1 JPY = 164.86126 VND)
Currency converter
1 VND =
0.0060657 JPY
VND to JPY: last 30 days
Over the last 30 days, 1 VND traded between 0.005901 and 0.0061363 JPY, averaging 0.0060253 JPY. The VND/JPY rate is down 1.03% since 2026-08-28.
- 30-day high
- 0.0061363
- 2026-09-01
- 30-day low
- 0.005901
- 2026-09-09
- 30-day average
- 0.0060253
- Days with data: 30
- 30-day change
- -1.03%
- since 2026-08-28
0.0061363
0.0059012026-08-28 → 2026-09-26
| Date | 1 VND in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 0.0060657 | 0.00% |
| 2026-09-25 | 0.0060657 | -0.67% |
| 2026-09-24 | 0.0061069 | +0.38% |
| 2026-09-23 | 0.006084 | +0.53% |
| 2026-09-22 | 0.0060521 | +0.13% |
| 2026-09-21 | 0.006044 | -0.41% |
| 2026-09-20 | 0.0060687 | -0.06% |
| 2026-09-19 | 0.0060723 | -0.02% |
| 2026-09-18 | 0.0060734 | +1.40% |
| 2026-09-17 | 0.0059896 | +0.43% |
| 2026-09-16 | 0.005964 | +0.16% |
| 2026-09-15 | 0.0059546 | -0.02% |
| 2026-09-14 | 0.0059559 | +0.24% |
| 2026-09-13 | 0.0059418 | -0.35% |
| 2026-09-12 | 0.0059625 | +0.30% |
| Date | 1 VND in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 0.0059445 | -0.04% |
| 2026-09-10 | 0.0059466 | +0.77% |
| 2026-09-09 | 0.005901 | -0.56% |
| 2026-09-08 | 0.0059343 | -0.08% |
| 2026-09-07 | 0.0059393 | -0.88% |
| 2026-09-06 | 0.0059918 | -0.03% |
| 2026-09-05 | 0.0059937 | +0.06% |
| 2026-09-04 | 0.00599 | +0.27% |
| 2026-09-03 | 0.0059737 | -2.33% |
| 2026-09-02 | 0.0061162 | -0.33% |
| 2026-09-01 | 0.0061363 | +0.22% |
| 2026-08-31 | 0.0061228 | -0.00% |
| 2026-08-30 | 0.0061229 | +0.14% |
| 2026-08-29 | 0.0061145 | -0.24% |
| 2026-08-28 | 0.0061289 | — |
VND to JPY conversion table
1 VND0.0060657 JPY
5 VND0.030329 JPY
10 VND0.060657 JPY
25 VND0.15164 JPY
50 VND0.30329 JPY
100 VND0.60657 JPY
500 VND3.0329 JPY
1,000 VND6.0657 JPY
5,000 VND30.3285 JPY
10,000 VND60.6571 JPY
Get the VND/JPY rate in your app
One GET request returns the latest VND → JPY 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/JPY?precision=6"fetch('https://rate-api.com/api/v1/pair/VND/JPY?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 VND = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/VND/JPY?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 VND = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/VND/JPY?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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "VND",
"to": "JPY"
},
"rate": 0.006066,
"timestamp": 1790432084,
"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
JPY to VNDJapanese Yen → Vietnamese Dong164.8613Convert VND to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.