Convert KID to AUD
Kiribati Dollar → Australian Dollar
1 KID = 1 AUD(1 AUD = 1 KID)
Currency converter
1 KID =
1 AUD
KID to AUD: last 30 days
Over the last 30 days, 1 KID traded between 0.99542 and 1.0051 AUD, averaging 0.99987 AUD. The KID/AUD rate is up 0.04% since 2026-08-28.
- 30-day high
- 1.0051
- 2026-09-10
- 30-day low
- 0.99542
- 2026-09-03
- 30-day average
- 0.99987
- Days with data: 30
- 30-day change
- +0.04%
- since 2026-08-28
1.0051
0.995422026-08-28 → 2026-09-26
| Date | 1 KID in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 1 | 0.00% |
| 2026-09-25 | 1 | 0.00% |
| 2026-09-24 | 1 | 0.00% |
| 2026-09-23 | 1 | -0.17% |
| 2026-09-22 | 1.0017 | +0.42% |
| 2026-09-21 | 0.99751 | -0.26% |
| 2026-09-20 | 1.0001 | -0.01% |
| 2026-09-19 | 1.0001 | +0.13% |
| 2026-09-18 | 0.99886 | -0.04% |
| 2026-09-17 | 0.99929 | +0.00% |
| 2026-09-16 | 0.99929 | -0.24% |
| 2026-09-15 | 1.0016 | -0.29% |
| 2026-09-14 | 1.0045 | +0.52% |
| 2026-09-13 | 0.99928 | -0.04% |
| 2026-09-12 | 0.99964 | +0.03% |
| Date | 1 KID in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.99935 | -0.57% |
| 2026-09-10 | 1.0051 | +0.60% |
| 2026-09-09 | 0.99906 | -0.14% |
| 2026-09-08 | 1.0005 | +0.17% |
| 2026-09-07 | 0.99885 | -0.11% |
| 2026-09-06 | 0.99993 | -0.01% |
| 2026-09-05 | 1 | +0.11% |
| 2026-09-04 | 0.99892 | +0.35% |
| 2026-09-03 | 0.99542 | -0.45% |
| 2026-09-02 | 0.99993 | -0.32% |
| 2026-09-01 | 1.0032 | +0.24% |
| 2026-08-31 | 1.0007 | +0.40% |
| 2026-08-30 | 0.9967 | -0.03% |
| 2026-08-29 | 0.99699 | -0.26% |
| 2026-08-28 | 0.99957 | — |
KID to AUD conversion table
1 KID1 AUD
5 KID5 AUD
10 KID10 AUD
25 KID25 AUD
50 KID50 AUD
100 KID100 AUD
500 KID500 AUD
1,000 KID1,000 AUD
5,000 KID5,000 AUD
10,000 KID10,000 AUD
Get the KID/AUD rate in your app
One GET request returns the latest KID → AUD 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/KID/AUD"fetch('https://rate-api.com/api/v1/pair/KID/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 KID = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/KID/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 KID = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/KID/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 KID = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "KID",
"to": "AUD"
},
"rate": 1,
"timestamp": 1790432046,
"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
AUD to KIDAustralian Dollar → Kiribati Dollar1Convert KID to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.