Convert JPY to SGD
Japanese Yen → Singapore Dollar
1 JPY = 0.00810406 SGD(1 SGD = 123.3949 JPY)
Currency converter
1 JPY =
0.0081041 SGD
JPY to SGD: last 30 days
Over the last 30 days, 1 JPY traded between 0.0079508 and 0.008243 SGD, averaging 0.0081203 SGD. The JPY/SGD rate is up 1.79% since 2026-08-29.
- 30-day high
- 0.008243
- 2026-09-09
- 30-day low
- 0.0079508
- 2026-09-01
- 30-day average
- 0.0081203
- Days with data: 30
- 30-day change
- +1.79%
- since 2026-08-29
0.008243
0.00795082026-08-29 → 2026-09-27
| Date | 1 JPY in SGD | Daily change |
|---|---|---|
| 2026-09-27 | 0.0081041 | 0.00% |
| 2026-09-26 | 0.0081041 | 0.00% |
| 2026-09-25 | 0.0081041 | +0.58% |
| 2026-09-24 | 0.0080573 | -0.46% |
| 2026-09-23 | 0.0080949 | -0.18% |
| 2026-09-22 | 0.0081098 | +0.05% |
| 2026-09-21 | 0.0081058 | +0.11% |
| 2026-09-20 | 0.0080968 | 0.00% |
| 2026-09-19 | 0.0080968 | 0.00% |
| 2026-09-18 | 0.0080968 | -1.15% |
| 2026-09-17 | 0.0081913 | -0.25% |
| 2026-09-16 | 0.0082122 | +0.03% |
| 2026-09-15 | 0.0082097 | -0.13% |
| 2026-09-14 | 0.0082206 | -0.13% |
| 2026-09-13 | 0.008231 | 0.00% |
| Date | 1 JPY in SGD | Daily change |
|---|---|---|
| 2026-09-12 | 0.008231 | 0.00% |
| 2026-09-11 | 0.008231 | +0.21% |
| 2026-09-10 | 0.0082138 | -0.35% |
| 2026-09-09 | 0.008243 | +0.48% |
| 2026-09-08 | 0.0082035 | +0.26% |
| 2026-09-07 | 0.0081822 | +0.91% |
| 2026-09-06 | 0.0081082 | 0.00% |
| 2026-09-05 | 0.0081082 | 0.00% |
| 2026-09-04 | 0.0081082 | -0.22% |
| 2026-09-03 | 0.0081264 | +1.87% |
| 2026-09-02 | 0.0079774 | +0.34% |
| 2026-09-01 | 0.0079508 | -0.21% |
| 2026-08-31 | 0.0079678 | +0.08% |
| 2026-08-30 | 0.0079615 | 0.00% |
| 2026-08-29 | 0.0079615 | — |
JPY to SGD conversion table
1 JPY0.0081041 SGD
5 JPY0.04052 SGD
10 JPY0.081041 SGD
25 JPY0.2026 SGD
50 JPY0.4052 SGD
100 JPY0.81041 SGD
500 JPY4.052 SGD
1,000 JPY8.1041 SGD
5,000 JPY40.5203 SGD
10,000 JPY81.0406 SGD
Get the JPY/SGD rate in your app
One GET request returns the latest JPY → SGD 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/JPY/SGD?precision=6"fetch('https://rate-api.com/api/v1/pair/JPY/SGD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JPY = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JPY/SGD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JPY = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JPY/SGD?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 JPY = {$data['rate']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "JPY",
"to": "SGD"
},
"rate": 0.008104,
"timestamp": 1790470782,
"date": "2026-09-27"
}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
SGD to JPYSingapore Dollar → Japanese Yen123.3949Convert JPY to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.