Convert JOD to AUD
Jordanian Dinar → Australian Dollar
1 JOD = 2.006252 AUD(1 AUD = 0.498442 JOD)
Currency converter
1 JOD =
2.0063 AUD
JOD to AUD: last 30 days
Over the last 30 days, 1 JOD traded between 1.9522 and 2.0073 AUD, averaging 1.9731 AUD. The JOD/AUD rate is up 2.34% since 2026-08-28.
- 30-day high
- 2.0073
- 2026-09-24
- 30-day low
- 1.9522
- 2026-09-09
- 30-day average
- 1.9731
- Days with data: 30
- 30-day change
- +2.34%
- since 2026-08-28
2.0073
1.95222026-08-28 → 2026-09-26
| Date | 1 JOD in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 2.0063 | 0.00% |
| 2026-09-25 | 2.0063 | -0.05% |
| 2026-09-24 | 2.0073 | +0.58% |
| 2026-09-23 | 1.9957 | +0.61% |
| 2026-09-22 | 1.9836 | +0.39% |
| 2026-09-21 | 1.976 | -0.25% |
| 2026-09-20 | 1.981 | 0.00% |
| 2026-09-19 | 1.981 | +0.00% |
| 2026-09-18 | 1.9809 | -0.09% |
| 2026-09-17 | 1.9827 | +0.26% |
| 2026-09-16 | 1.9776 | -0.09% |
| 2026-09-15 | 1.9794 | +0.06% |
| 2026-09-14 | 1.9783 | +0.60% |
| 2026-09-13 | 1.9664 | 0.00% |
| 2026-09-12 | 1.9664 | 0.00% |
| Date | 1 JOD in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 1.9664 | +0.17% |
| 2026-09-10 | 1.963 | +0.56% |
| 2026-09-09 | 1.9522 | -0.14% |
| 2026-09-08 | 1.955 | 0.00% |
| 2026-09-07 | 1.955 | -0.15% |
| 2026-09-06 | 1.958 | 0.00% |
| 2026-09-05 | 1.958 | 0.00% |
| 2026-09-04 | 1.958 | -0.14% |
| 2026-09-03 | 1.9608 | -0.64% |
| 2026-09-02 | 1.9733 | -0.09% |
| 2026-09-01 | 1.975 | +0.29% |
| 2026-08-31 | 1.9694 | +0.46% |
| 2026-08-30 | 1.9604 | 0.00% |
| 2026-08-29 | 1.9604 | 0.00% |
| 2026-08-28 | 1.9604 | — |
JOD to AUD conversion table
1 JOD2.0063 AUD
5 JOD10.0313 AUD
10 JOD20.0625 AUD
25 JOD50.1563 AUD
50 JOD100.3126 AUD
100 JOD200.6252 AUD
500 JOD1,003.126 AUD
1,000 JOD2,006.252 AUD
5,000 JOD10,031.26 AUD
10,000 JOD20,062.52 AUD
Get the JOD/AUD rate in your app
One GET request returns the latest JOD → 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/JOD/AUD"fetch('https://rate-api.com/api/v1/pair/JOD/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 JOD = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/JOD/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 JOD = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/JOD/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 JOD = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "JOD",
"to": "AUD"
},
"rate": 2.0063,
"timestamp": 1790432080,
"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 JODAustralian Dollar → Jordanian Dinar0.49844Convert JOD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.