Laotian Kip (LAK) ₭
Laotian Kip exchange rates against major world currencies, checked hourly and updated as sources publish.
1 LAK = 0.0000446211 USD
1 LAK in other currencies
LAK to USDUS Dollar0.000044621LAK to EUREuro0.000039131LAK to GBPBritish Pound0.00003367LAK to JPYJapanese Yen0.0070318LAK to CNYChinese Yuan0.00029955LAK to CADCanadian Dollar0.000063107LAK to AUDAustralian Dollar0.000063471LAK to CHFSwiss Franc0.000036959LAK to INRIndian Rupee0.0042755LAK to RUBRussian Ruble0.0037934
Convert to LAK
USD to LAKUS Dollar22,410.918EUR to LAKEuro25,555.169GBP to LAKBritish Pound29,699.773JPY to LAKJapanese Yen142.2102CNY to LAKChinese Yuan3,338.3195CAD to LAKCanadian Dollar15,846.202AUD to LAKAustralian Dollar15,755.345CHF to LAKSwiss Franc27,056.823INR to LAKIndian Rupee233.8921RUB to LAKRussian Ruble263.6173
Get LAK rates in your app
One GET request returns every rate against LAK 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=LAK"fetch('https://rate-api.com/api/v1/latest?base=LAK', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 LAK = ${data.rates.USD} USD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/latest?base=LAK",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 LAK = {data['rates']['USD']} USD")<?php
$ch = curl_init('https://rate-api.com/api/v1/latest?base=LAK');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 LAK = {$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.