Convert AUD to JMD
Australian Dollar → Jamaican Dollar
1 AUD = 111.20719 JMD(1 JMD = 0.00899222 AUD)
Currency converter
1 AUD =
111.2072 JMD
AUD to JMD: last 30 days
Over the last 30 days, 1 AUD traded between 110.8809 and 114.4666 JMD, averaging 112.8956 JMD. The AUD/JMD rate is down 2.23% since 2026-08-29.
- 30-day high
- 114.4666
- 2026-09-08
- 30-day low
- 110.8809
- 2026-09-25
- 30-day average
- 112.8956
- Days with data: 30
- 30-day change
- -2.23%
- since 2026-08-29
114.4666
110.88092026-08-29 → 2026-09-27
| Date | 1 AUD in JMD | Daily change |
|---|---|---|
| 2026-09-27 | 111.2072 | 0.00% |
| 2026-09-26 | 111.2072 | +0.29% |
| 2026-09-25 | 110.8809 | -0.07% |
| 2026-09-24 | 110.9606 | -0.42% |
| 2026-09-23 | 111.4305 | -0.59% |
| 2026-09-22 | 112.094 | -0.39% |
| 2026-09-21 | 112.5375 | +0.32% |
| 2026-09-20 | 112.1819 | -0.09% |
| 2026-09-19 | 112.2808 | -0.06% |
| 2026-09-18 | 112.3442 | -0.43% |
| 2026-09-17 | 112.8331 | +0.48% |
| 2026-09-16 | 112.2982 | -0.01% |
| 2026-09-15 | 112.3048 | -0.29% |
| 2026-09-14 | 112.6281 | -0.56% |
| 2026-09-13 | 113.2639 | +0.01% |
| Date | 1 AUD in JMD | Daily change |
|---|---|---|
| 2026-09-12 | 113.2555 | -0.24% |
| 2026-09-11 | 113.5224 | +0.16% |
| 2026-09-10 | 113.3413 | -0.95% |
| 2026-09-09 | 114.4268 | -0.03% |
| 2026-09-08 | 114.4666 | +0.08% |
| 2026-09-07 | 114.3802 | +0.42% |
| 2026-09-06 | 113.9016 | +0.02% |
| 2026-09-05 | 113.8829 | -0.05% |
| 2026-09-04 | 113.943 | +0.10% |
| 2026-09-03 | 113.83 | +0.73% |
| 2026-09-02 | 113.0036 | +0.04% |
| 2026-09-01 | 112.9556 | -0.98% |
| 2026-08-31 | 114.072 | +0.34% |
| 2026-08-30 | 113.6846 | -0.06% |
| 2026-08-29 | 113.7488 | — |
AUD to JMD conversion table
1 AUD111.2072 JMD
5 AUD556.0359 JMD
10 AUD1,112.0719 JMD
25 AUD2,780.1796 JMD
50 AUD5,560.3593 JMD
100 AUD11,120.719 JMD
500 AUD55,603.593 JMD
1,000 AUD111,207.19 JMD
5,000 AUD556,035.93 JMD
10,000 AUD1,112,071.9 JMD
Get the AUD/JMD rate in your app
One GET request returns the latest AUD → JMD 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/JMD"fetch('https://rate-api.com/api/v1/pair/AUD/JMD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} JMD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/JMD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} JMD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/JMD');
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']} JMD\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "JMD"
},
"rate": 111.2072,
"timestamp": 1790499658,
"date": "2026-09-27"
}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
JMD to AUDJamaican Dollar → Australian Dollar0.0089922Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.