Convert USD to KID
US Dollar → Kiribati Dollar
1 USD = 1.422433 KID(1 KID = 0.703021 USD)
Currency converter
1 USD =
1.4224 KID
USD to KID: last 30 days
Over the last 30 days, 1 USD traded between 1.3848 and 1.4232 KID, averaging 1.3991 KID. The USD/KID rate is up 2.30% since 2026-08-28.
- 30-day high
- 1.4232
- 2026-09-24
- 30-day low
- 1.3848
- 2026-09-10
- 30-day average
- 1.3991
- Days with data: 30
- 30-day change
- +2.30%
- since 2026-08-28
1.4232
1.38482026-08-28 → 2026-09-26
| Date | 1 USD in KID | Daily change |
|---|---|---|
| 2026-09-26 | 1.4224 | 0.00% |
| 2026-09-25 | 1.4224 | -0.05% |
| 2026-09-24 | 1.4232 | +0.58% |
| 2026-09-23 | 1.415 | +0.78% |
| 2026-09-22 | 1.404 | -0.04% |
| 2026-09-21 | 1.4045 | +0.01% |
| 2026-09-20 | 1.4044 | +0.01% |
| 2026-09-19 | 1.4043 | -0.13% |
| 2026-09-18 | 1.4061 | -0.04% |
| 2026-09-17 | 1.4067 | +0.26% |
| 2026-09-16 | 1.4031 | +0.14% |
| 2026-09-15 | 1.4011 | +0.34% |
| 2026-09-14 | 1.3963 | +0.08% |
| 2026-09-13 | 1.3952 | +0.04% |
| 2026-09-12 | 1.3947 | -0.03% |
| Date | 1 USD in KID | Daily change |
|---|---|---|
| 2026-09-11 | 1.3951 | +0.74% |
| 2026-09-10 | 1.3848 | -0.04% |
| 2026-09-09 | 1.3854 | 0.00% |
| 2026-09-08 | 1.3854 | -0.17% |
| 2026-09-07 | 1.3877 | -0.04% |
| 2026-09-06 | 1.3883 | +0.01% |
| 2026-09-05 | 1.3882 | -0.11% |
| 2026-09-04 | 1.3897 | -0.49% |
| 2026-09-03 | 1.3966 | -0.19% |
| 2026-09-02 | 1.3992 | +0.24% |
| 2026-09-01 | 1.3959 | +0.04% |
| 2026-08-31 | 1.3953 | +0.06% |
| 2026-08-30 | 1.3945 | +0.03% |
| 2026-08-29 | 1.3941 | +0.26% |
| 2026-08-28 | 1.3905 | — |
USD to KID conversion table
1 USD1.4224 KID
5 USD7.1122 KID
10 USD14.2243 KID
25 USD35.5608 KID
50 USD71.1216 KID
100 USD142.2433 KID
500 USD711.2164 KID
1,000 USD1,422.4327 KID
5,000 USD7,112.1635 KID
10,000 USD14,224.327 KID
Get the USD/KID rate in your app
One GET request returns the latest USD → KID 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/KID"fetch('https://rate-api.com/api/v1/pair/USD/KID', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} KID`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/KID",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} KID")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/KID');
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']} KID\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "KID"
},
"rate": 1.4224,
"timestamp": 1790432066,
"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
KID to USDKiribati Dollar → US Dollar0.70302Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.