Convert SGD to JPY
Singapore Dollar → Japanese Yen
1 SGD = 123.3949 JPY(1 JPY = 0.00810406 SGD)
Currency converter
1 SGD =
123.3949 JPY
SGD to JPY: last 30 days
Over the last 30 days, 1 SGD traded between 121.3155 and 125.7735 JPY, averaging 123.2361 JPY. The SGD/JPY rate is down 1.76% since 2026-08-28.
- 30-day high
- 125.7735
- 2026-09-01
- 30-day low
- 121.3155
- 2026-09-09
- 30-day average
- 123.2361
- Days with data: 30
- 30-day change
- -1.76%
- since 2026-08-28
125.7735
121.31552026-08-28 → 2026-09-26
| Date | 1 SGD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 123.3949 | 0.00% |
| 2026-09-25 | 123.3949 | -0.58% |
| 2026-09-24 | 124.1116 | +0.47% |
| 2026-09-23 | 123.5347 | +0.18% |
| 2026-09-22 | 123.3074 | -0.05% |
| 2026-09-21 | 123.3684 | -0.11% |
| 2026-09-20 | 123.5059 | 0.00% |
| 2026-09-19 | 123.5059 | 0.00% |
| 2026-09-18 | 123.5059 | +1.17% |
| 2026-09-17 | 122.0811 | +0.26% |
| 2026-09-16 | 121.7702 | -0.03% |
| 2026-09-15 | 121.8075 | +0.13% |
| 2026-09-14 | 121.645 | +0.13% |
| 2026-09-13 | 121.4922 | 0.00% |
| 2026-09-12 | 121.4922 | 0.00% |
| Date | 1 SGD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 121.4922 | -0.21% |
| 2026-09-10 | 121.7467 | +0.36% |
| 2026-09-09 | 121.3155 | -0.48% |
| 2026-09-08 | 121.8992 | -0.26% |
| 2026-09-07 | 122.2161 | -0.91% |
| 2026-09-06 | 123.3325 | 0.00% |
| 2026-09-05 | 123.3325 | 0.00% |
| 2026-09-04 | 123.3325 | +0.22% |
| 2026-09-03 | 123.0557 | -1.83% |
| 2026-09-02 | 125.3534 | -0.33% |
| 2026-09-01 | 125.7735 | +0.21% |
| 2026-08-31 | 125.5048 | -0.08% |
| 2026-08-30 | 125.6037 | 0.00% |
| 2026-08-29 | 125.6037 | 0.00% |
| 2026-08-28 | 125.6037 | — |
SGD to JPY conversion table
1 SGD123.3949 JPY
5 SGD616.9745 JPY
10 SGD1,233.949 JPY
25 SGD3,084.8726 JPY
50 SGD6,169.7452 JPY
100 SGD12,339.49 JPY
500 SGD61,697.452 JPY
1,000 SGD123,394.9 JPY
5,000 SGD616,974.52 JPY
10,000 SGD1,233,949 JPY
Get the SGD/JPY rate in your app
One GET request returns the latest SGD → 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/SGD/JPY"fetch('https://rate-api.com/api/v1/pair/SGD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/JPY');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SGD = {$data['rate']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "JPY"
},
"rate": 123.3949,
"timestamp": 1790435207,
"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 SGDJapanese Yen → Singapore Dollar0.0081041Convert SGD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.