Convert AUD to KES
Australian Dollar → Kenyan Shilling
1 AUD = 91.067249 KES(1 KES = 0.0109809 AUD)
Currency converter
1 AUD =
91.0672 KES
AUD to KES: last 30 days
Over the last 30 days, 1 AUD traded between 90.9992 and 93.5101 KES, averaging 92.566 KES. The AUD/KES rate is down 2.21% since 2026-08-28.
- 30-day high
- 93.5101
- 2026-09-09
- 30-day low
- 90.9992
- 2026-09-24
- 30-day average
- 92.566
- Days with data: 30
- 30-day change
- -2.21%
- since 2026-08-28
93.5101
90.99922026-08-28 → 2026-09-26
| Date | 1 AUD in KES | Daily change |
|---|---|---|
| 2026-09-26 | 91.0672 | 0.00% |
| 2026-09-25 | 91.0672 | +0.07% |
| 2026-09-24 | 90.9992 | -0.54% |
| 2026-09-23 | 91.4941 | -0.65% |
| 2026-09-22 | 92.0951 | -0.35% |
| 2026-09-21 | 92.4186 | +0.22% |
| 2026-09-20 | 92.2164 | +0.02% |
| 2026-09-19 | 92.1982 | -0.17% |
| 2026-09-18 | 92.3531 | +0.19% |
| 2026-09-17 | 92.1739 | -0.32% |
| 2026-09-16 | 92.4654 | +0.24% |
| 2026-09-15 | 92.2482 | -0.04% |
| 2026-09-14 | 92.2884 | -0.58% |
| 2026-09-13 | 92.8299 | -0.01% |
| 2026-09-12 | 92.8421 | +0.02% |
| Date | 1 AUD in KES | Daily change |
|---|---|---|
| 2026-09-11 | 92.8252 | -0.18% |
| 2026-09-10 | 92.9948 | -0.55% |
| 2026-09-09 | 93.5101 | +0.14% |
| 2026-09-08 | 93.3771 | +0.00% |
| 2026-09-07 | 93.3762 | +0.16% |
| 2026-09-06 | 93.2285 | -0.01% |
| 2026-09-05 | 93.2411 | +0.00% |
| 2026-09-04 | 93.2403 | +0.15% |
| 2026-09-03 | 93.1006 | +0.63% |
| 2026-09-02 | 92.5166 | +0.03% |
| 2026-09-01 | 92.4908 | -0.49% |
| 2026-08-31 | 92.9432 | -0.20% |
| 2026-08-30 | 93.1281 | +0.00% |
| 2026-08-29 | 93.1266 | +0.00% |
| 2026-08-28 | 93.1248 | — |
AUD to KES conversion table
1 AUD91.0672 KES
5 AUD455.3362 KES
10 AUD910.6725 KES
25 AUD2,276.6812 KES
50 AUD4,553.3624 KES
100 AUD9,106.7249 KES
500 AUD45,533.624 KES
1,000 AUD91,067.249 KES
5,000 AUD455,336.24 KES
10,000 AUD910,672.49 KES
Get the AUD/KES rate in your app
One GET request returns the latest AUD → KES 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/AUD/KES"fetch('https://rate-api.com/api/v1/pair/AUD/KES', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} KES`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/KES",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} KES")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/KES');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 AUD = {$data['rate']} KES\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "KES"
},
"rate": 91.0672,
"timestamp": 1790429372,
"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
KES to AUDKenyan Shilling → Australian Dollar0.010981Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.