Convert SGD to EUR
Singapore Dollar → Euro
1 SGD = 0.686672 EUR(1 EUR = 1.4563 SGD)
Currency converter
1 SGD =
0.68667 EUR
SGD to EUR: last 30 days
Over the last 30 days, 1 SGD traded between 0.6756 and 0.68733 EUR, averaging 0.6808 EUR. The SGD/EUR rate is up 1.64% since 2026-08-28.
- 30-day high
- 0.68733
- 2026-09-24
- 30-day low
- 0.6756
- 2026-08-28
- 30-day average
- 0.6808
- Days with data: 30
- 30-day change
- +1.64%
- since 2026-08-28
0.68733
0.67562026-08-28 → 2026-09-26
| Date | 1 SGD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.68667 | 0.00% |
| 2026-09-25 | 0.68667 | -0.10% |
| 2026-09-24 | 0.68733 | +0.26% |
| 2026-09-23 | 0.68554 | +0.17% |
| 2026-09-22 | 0.68437 | +0.24% |
| 2026-09-21 | 0.68271 | +0.02% |
| 2026-09-20 | 0.68257 | 0.00% |
| 2026-09-19 | 0.68257 | 0.00% |
| 2026-09-18 | 0.68257 | -0.06% |
| 2026-09-17 | 0.68298 | +0.33% |
| 2026-09-16 | 0.68074 | -0.05% |
| 2026-09-15 | 0.68105 | -0.05% |
| 2026-09-14 | 0.68141 | +0.15% |
| 2026-09-13 | 0.68038 | 0.00% |
| 2026-09-12 | 0.68038 | 0.00% |
| Date | 1 SGD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.68038 | +0.09% |
| 2026-09-10 | 0.67979 | +0.07% |
| 2026-09-09 | 0.67929 | -0.14% |
| 2026-09-08 | 0.68023 | +0.10% |
| 2026-09-07 | 0.67955 | +0.06% |
| 2026-09-06 | 0.67917 | 0.00% |
| 2026-09-05 | 0.67917 | 0.00% |
| 2026-09-04 | 0.67917 | +0.01% |
| 2026-09-03 | 0.6791 | +0.11% |
| 2026-09-02 | 0.67838 | +0.12% |
| 2026-09-01 | 0.67756 | -0.00% |
| 2026-08-31 | 0.67759 | +0.29% |
| 2026-08-30 | 0.6756 | 0.00% |
| 2026-08-29 | 0.6756 | 0.00% |
| 2026-08-28 | 0.6756 | — |
SGD to EUR conversion table
1 SGD0.68667 EUR
5 SGD3.4334 EUR
10 SGD6.8667 EUR
25 SGD17.1668 EUR
50 SGD34.3336 EUR
100 SGD68.6672 EUR
500 SGD343.3359 EUR
1,000 SGD686.6717 EUR
5,000 SGD3,433.3585 EUR
10,000 SGD6,866.717 EUR
Get the SGD/EUR rate in your app
One GET request returns the latest SGD → EUR 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/EUR"fetch('https://rate-api.com/api/v1/pair/SGD/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SGD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SGD/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SGD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SGD/EUR');
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']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "SGD",
"to": "EUR"
},
"rate": 0.6867,
"timestamp": 1790435214,
"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
EUR to SGDEuro → Singapore Dollar1.4563Convert SGD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.