South Korean Won (KRW) ₩
South Korean Won exchange rates against major world currencies, checked hourly and updated as sources publish.
1 KRW = 0.000737982 USD
1 KRW in other currencies
KRW to USDUS Dollar0.00073798KRW to EUREuro0.00064718KRW to GBPBritish Pound0.00055687KRW to JPYJapanese Yen0.1163KRW to CNYChinese Yuan0.0049542KRW to CADCanadian Dollar0.0010437KRW to AUDAustralian Dollar0.0010497KRW to CHFSwiss Franc0.00061126KRW to INRIndian Rupee0.070711KRW to RUBRussian Ruble0.062738
Convert to KRW
Get KRW rates in your app
One GET request returns every rate against KRW as JSON. Send your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://rate-api.com/api/v1/latest?base=KRW"fetch('https://rate-api.com/api/v1/latest?base=KRW', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KRW = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=KRW",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KRW = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=KRW');
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['rates']['USD']} USD\n";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.
Rates as of 2026-09-26. For developers: query these via the Rate-API REST API.