Convert JMD to AUD
Jamaican Dollar → Australian Dollar
1 JMD = 0.00901869 AUD(1 AUD = 110.88086 JMD)
Currency converter
1 JMD =
0.0090187 AUD
JMD to AUD: last 30 days
Over the last 30 days, 1 JMD traded between 0.0087362 and 0.0090187 AUD, averaging 0.0088518 AUD. The JMD/AUD rate is up 2.89% since 2026-08-28.
- 30-day high
- 0.0090187
- 2026-09-25
- 30-day low
- 0.0087362
- 2026-09-08
- 30-day average
- 0.0088518
- Days with data: 30
- 30-day change
- +2.89%
- since 2026-08-28
0.0090187
0.00873622026-08-28 → 2026-09-26
| Date | 1 JMD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.0090187 | 0.00% |
| 2026-09-25 | 0.0090187 | +0.07% |
| 2026-09-24 | 0.0090122 | +0.42% |
| 2026-09-23 | 0.0089742 | +0.60% |
| 2026-09-22 | 0.0089211 | +0.40% |
| 2026-09-21 | 0.0088859 | -0.32% |
| 2026-09-20 | 0.0089141 | +0.09% |
| 2026-09-19 | 0.0089062 | +0.06% |
| 2026-09-18 | 0.0089012 | +0.44% |
| 2026-09-17 | 0.0088626 | -0.47% |
| 2026-09-16 | 0.0089049 | +0.01% |
| 2026-09-15 | 0.0089043 | +0.29% |
| 2026-09-14 | 0.0088788 | +0.56% |
| 2026-09-13 | 0.0088289 | -0.01% |
| 2026-09-12 | 0.0088296 | +0.24% |
| Date | 1 JMD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.0088088 | -0.16% |
| 2026-09-10 | 0.0088229 | +0.96% |
| 2026-09-09 | 0.0087392 | +0.03% |
| 2026-09-08 | 0.0087362 | -0.08% |
| 2026-09-07 | 0.0087428 | -0.42% |
| 2026-09-06 | 0.0087795 | -0.02% |
| 2026-09-05 | 0.008781 | +0.05% |
| 2026-09-04 | 0.0087763 | -0.10% |
| 2026-09-03 | 0.008785 | -0.73% |
| 2026-09-02 | 0.0088493 | -0.04% |
| 2026-09-01 | 0.008853 | +0.99% |
| 2026-08-31 | 0.0087664 | -0.34% |
| 2026-08-30 | 0.0087963 | +0.06% |
| 2026-08-29 | 0.0087913 | +0.30% |
| 2026-08-28 | 0.0087651 | — |
JMD to AUD conversion table
1 JMD0.0090187 AUD
5 JMD0.045093 AUD
10 JMD0.090187 AUD
25 JMD0.22547 AUD
50 JMD0.45093 AUD
100 JMD0.90187 AUD
500 JMD4.5093 AUD
1,000 JMD9.0187 AUD
5,000 JMD45.0934 AUD
10,000 JMD90.1869 AUD
Get the JMD/AUD rate in your app
One GET request returns the latest JMD → 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/JMD/AUD?precision=6"fetch('https://rate-api.com/api/v1/pair/JMD/AUD?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JMD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JMD/AUD?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JMD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JMD/AUD?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JMD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "JMD",
"to": "AUD"
},
"rate": 0.009019,
"timestamp": 1790435063,
"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 JMDAustralian Dollar → Jamaican Dollar110.8809Convert JMD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.