Convert KRW to USD
South Korean Won → US Dollar
1 KRW = 0.000737982 USD(1 USD = 1,355.0469 KRW)
Currency converter
1 KRW =
0.00073798 USD
KRW to USD: last 30 days
Over the last 30 days, 1 KRW traded between 0.00072041 and 0.00074839 USD, averaging 0.00073489 USD. The KRW/USD rate is up 1.44% since 2026-08-28.
- 30-day high
- 0.00074839
- 2026-09-09
- 30-day low
- 0.00072041
- 2026-09-18
- 30-day average
- 0.00073489
- Days with data: 30
- 30-day change
- +1.44%
- since 2026-08-28
0.00074839
0.000720412026-08-28 → 2026-09-26
| Date | 1 KRW in USD | Daily change |
|---|---|---|
| 2026-09-26 | 0.00073798 | 0.00% |
| 2026-09-25 | 0.00073798 | +1.00% |
| 2026-09-24 | 0.00073067 | -0.24% |
| 2026-09-23 | 0.00073241 | -0.67% |
| 2026-09-22 | 0.00073738 | +1.18% |
| 2026-09-21 | 0.00072877 | +1.16% |
| 2026-09-20 | 0.00072041 | 0.00% |
| 2026-09-19 | 0.00072041 | 0.00% |
| 2026-09-18 | 0.00072041 | -0.40% |
| 2026-09-17 | 0.0007233 | -1.07% |
| 2026-09-16 | 0.0007311 | -0.63% |
| 2026-09-15 | 0.00073575 | -0.95% |
| 2026-09-14 | 0.00074281 | -0.26% |
| 2026-09-13 | 0.00074472 | 0.00% |
| 2026-09-12 | 0.00074472 | 0.00% |
| Date | 1 KRW in USD | Daily change |
|---|---|---|
| 2026-09-11 | 0.00074472 | +0.08% |
| 2026-09-10 | 0.00074416 | -0.57% |
| 2026-09-09 | 0.00074839 | +0.41% |
| 2026-09-08 | 0.00074534 | +0.47% |
| 2026-09-07 | 0.00074188 | +0.18% |
| 2026-09-06 | 0.00074055 | 0.00% |
| 2026-09-05 | 0.00074055 | 0.00% |
| 2026-09-04 | 0.00074055 | +0.51% |
| 2026-09-03 | 0.00073676 | +0.39% |
| 2026-09-02 | 0.00073391 | +0.88% |
| 2026-09-01 | 0.00072748 | -0.48% |
| 2026-08-31 | 0.00073098 | +0.48% |
| 2026-08-30 | 0.00072751 | 0.00% |
| 2026-08-29 | 0.00072751 | 0.00% |
| 2026-08-28 | 0.00072751 | — |
KRW to USD conversion table
1 KRW0.00073798 USD
5 KRW0.0036899 USD
10 KRW0.0073798 USD
25 KRW0.01845 USD
50 KRW0.036899 USD
100 KRW0.073798 USD
500 KRW0.36899 USD
1,000 KRW0.73798 USD
5,000 KRW3.6899 USD
10,000 KRW7.3798 USD
Get the KRW/USD rate in your app
One GET request returns the latest KRW → USD 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/KRW/USD?precision=6"fetch('https://rate-api.com/api/v1/pair/KRW/USD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KRW = ${data.rate} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/KRW/USD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KRW = {data['rate']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/KRW/USD?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 KRW = {$data['rate']} USD\n";Example response
{
"success": true,
"pair": {
"from": "KRW",
"to": "USD"
},
"rate": 0.000738,
"timestamp": 1790432129,
"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
USD to KRWUS Dollar → South Korean Won1,355.0469Convert KRW to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.