Convert USD to SGD
US Dollar → Singapore Dollar
1 USD = 1.27712 SGD(1 SGD = 0.783012 USD)
Currency converter
1 USD =
1.2771 SGD
USD to SGD: last 30 days
Over the last 30 days, 1 USD traded between 1.2634 and 1.2799 SGD, averaging 1.2719 SGD. The USD/SGD rate is up 0.46% since 2026-08-28.
- 30-day high
- 1.2799
- 2026-09-24
- 30-day low
- 1.2634
- 2026-09-09
- 30-day average
- 1.2719
- Days with data: 30
- 30-day change
- +0.46%
- since 2026-08-28
1.2799
1.26342026-08-28 → 2026-09-26
| Date | 1 USD in SGD | Daily change |
|---|---|---|
| 2026-09-26 | 1.2771 | 0.00% |
| 2026-09-25 | 1.2771 | -0.22% |
| 2026-09-24 | 1.2799 | +0.13% |
| 2026-09-23 | 1.2783 | +0.28% |
| 2026-09-22 | 1.2747 | -0.01% |
| 2026-09-21 | 1.2748 | -0.28% |
| 2026-09-20 | 1.2784 | 0.00% |
| 2026-09-19 | 1.2784 | 0.00% |
| 2026-09-18 | 1.2784 | +0.24% |
| 2026-09-17 | 1.2753 | +0.16% |
| 2026-09-16 | 1.2733 | +0.06% |
| 2026-09-15 | 1.2725 | +0.16% |
| 2026-09-14 | 1.2705 | +0.21% |
| 2026-09-13 | 1.2679 | 0.00% |
| 2026-09-12 | 1.2679 | 0.00% |
| Date | 1 USD in SGD | Daily change |
|---|---|---|
| 2026-09-11 | 1.2679 | +0.12% |
| 2026-09-10 | 1.2664 | +0.24% |
| 2026-09-09 | 1.2634 | -0.19% |
| 2026-09-08 | 1.2658 | -0.03% |
| 2026-09-07 | 1.2662 | -0.06% |
| 2026-09-06 | 1.2669 | 0.00% |
| 2026-09-05 | 1.2669 | 0.00% |
| 2026-09-04 | 1.2669 | -0.07% |
| 2026-09-03 | 1.2678 | -0.42% |
| 2026-09-02 | 1.2732 | -0.02% |
| 2026-09-01 | 1.2734 | +0.06% |
| 2026-08-31 | 1.2727 | +0.11% |
| 2026-08-30 | 1.2713 | 0.00% |
| 2026-08-29 | 1.2713 | 0.00% |
| 2026-08-28 | 1.2713 | — |
USD to SGD conversion table
1 USD1.2771 SGD
5 USD6.3856 SGD
10 USD12.7712 SGD
25 USD31.928 SGD
50 USD63.856 SGD
100 USD127.712 SGD
500 USD638.56 SGD
1,000 USD1,277.1201 SGD
5,000 USD6,385.6003 SGD
10,000 USD12,771.201 SGD
Get the USD/SGD rate in your app
One GET request returns the latest USD → 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/USD/SGD"fetch('https://rate-api.com/api/v1/pair/USD/SGD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SGD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SGD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SGD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SGD');
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']} SGD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SGD"
},
"rate": 1.2771,
"timestamp": 1790437898,
"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
SGD to USDSingapore Dollar → US Dollar0.78301Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.