Convert USD to KRW
US Dollar → South Korean Won
1 USD = 1,355.0469 KRW(1 KRW = 0.000737982 USD)
Currency converter
1 USD =
1,355.0469 KRW
USD to KRW: last 30 days
Over the last 30 days, 1 USD traded between 1,336.2 and 1,388.1 KRW, averaging 1,360.9192 KRW. The USD/KRW rate is down 1.42% since 2026-08-28.
- 30-day high
- 1,388.1
- 2026-09-18
- 30-day low
- 1,336.2
- 2026-09-09
- 30-day average
- 1,360.9192
- Days with data: 30
- 30-day change
- -1.42%
- since 2026-08-28
1,388.1
1,336.22026-08-28 → 2026-09-26
| Date | 1 USD in KRW | Daily change |
|---|---|---|
| 2026-09-26 | 1,355.0469 | 0.00% |
| 2026-09-25 | 1,355.0469 | -0.99% |
| 2026-09-24 | 1,368.6021 | +0.24% |
| 2026-09-23 | 1,365.3492 | +0.68% |
| 2026-09-22 | 1,356.15 | -1.17% |
| 2026-09-21 | 1,372.18 | -1.15% |
| 2026-09-20 | 1,388.1 | 0.00% |
| 2026-09-19 | 1,388.1 | 0.00% |
| 2026-09-18 | 1,388.1 | +0.40% |
| 2026-09-17 | 1,382.55 | +1.08% |
| 2026-09-16 | 1,367.8 | +0.64% |
| 2026-09-15 | 1,359.15 | +0.96% |
| 2026-09-14 | 1,346.24 | +0.26% |
| 2026-09-13 | 1,342.79 | 0.00% |
| 2026-09-12 | 1,342.79 | 0.00% |
| Date | 1 USD in KRW | Daily change |
|---|---|---|
| 2026-09-11 | 1,342.79 | -0.08% |
| 2026-09-10 | 1,343.8 | +0.57% |
| 2026-09-09 | 1,336.2 | -0.41% |
| 2026-09-08 | 1,341.67 | -0.46% |
| 2026-09-07 | 1,347.93 | -0.18% |
| 2026-09-06 | 1,350.35 | 0.00% |
| 2026-09-05 | 1,350.35 | 0.00% |
| 2026-09-04 | 1,350.35 | -0.51% |
| 2026-09-03 | 1,357.29 | -0.39% |
| 2026-09-02 | 1,362.56 | -0.88% |
| 2026-09-01 | 1,374.61 | +0.48% |
| 2026-08-31 | 1,368.03 | -0.47% |
| 2026-08-30 | 1,374.55 | 0.00% |
| 2026-08-29 | 1,374.55 | 0.00% |
| 2026-08-28 | 1,374.55 | — |
USD to KRW conversion table
1 USD1,355.0469 KRW
5 USD6,775.2346 KRW
10 USD13,550.469 KRW
25 USD33,876.173 KRW
50 USD67,752.346 KRW
100 USD135,504.69 KRW
500 USD677,523.46 KRW
1,000 USD1,355,046.9 KRW
5,000 USD6,775,234.6 KRW
10,000 USD13,550,469 KRW
Get the USD/KRW rate in your app
One GET request returns the latest USD → KRW 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/KRW"fetch('https://rate-api.com/api/v1/pair/USD/KRW', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} KRW`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/KRW",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} KRW")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/KRW');
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']} KRW\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "KRW"
},
"rate": 1355.0469,
"timestamp": 1790429349,
"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
KRW to USDSouth Korean Won → US Dollar0.00073798Convert USD to other currencies
Convert other currencies to KRW
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.