Convert AUD to JPY
Australian Dollar → Japanese Yen
1 AUD = 110.78915 JPY(1 JPY = 0.00902615 AUD)
Currency converter
1 AUD =
110.7892 JPY
AUD to JPY: last 30 days
Over the last 30 days, 1 AUD traded between 110.1882 and 114.886 JPY, averaging 112.0459 JPY. The AUD/JPY rate is down 3.57% since 2026-08-28.
- 30-day high
- 114.886
- 2026-08-28
- 30-day low
- 110.1882
- 2026-09-14
- 30-day average
- 112.0459
- Days with data: 30
- 30-day change
- -3.57%
- since 2026-08-28
114.886
110.18822026-08-28 → 2026-09-26
| Date | 1 AUD in JPY | Daily change |
|---|---|---|
| 2026-09-26 | 110.7892 | 0.00% |
| 2026-09-25 | 110.7892 | -0.75% |
| 2026-09-24 | 111.6214 | +0.01% |
| 2026-09-23 | 111.6066 | -0.14% |
| 2026-09-22 | 111.7605 | -0.44% |
| 2026-09-21 | 112.2555 | -0.14% |
| 2026-09-20 | 112.4172 | 0.00% |
| 2026-09-19 | 112.4172 | 0.00% |
| 2026-09-18 | 112.4172 | +1.50% |
| 2026-09-17 | 110.7562 | +0.16% |
| 2026-09-16 | 110.5841 | +0.13% |
| 2026-09-15 | 110.4461 | +0.23% |
| 2026-09-14 | 110.1882 | -0.27% |
| 2026-09-13 | 110.4863 | 0.00% |
| 2026-09-12 | 110.4863 | 0.00% |
| Date | 1 AUD in JPY | Daily change |
|---|---|---|
| 2026-09-11 | 110.4863 | -0.26% |
| 2026-09-10 | 110.7774 | +0.04% |
| 2026-09-09 | 110.7362 | -0.52% |
| 2026-09-08 | 111.3195 | -0.29% |
| 2026-09-07 | 111.6442 | -0.81% |
| 2026-09-06 | 112.5558 | 0.00% |
| 2026-09-05 | 112.5558 | 0.00% |
| 2026-09-04 | 112.5558 | +0.30% |
| 2026-09-03 | 112.2213 | -1.62% |
| 2026-09-02 | 114.0733 | -0.26% |
| 2026-09-01 | 114.3755 | -0.02% |
| 2026-08-31 | 114.3952 | -0.43% |
| 2026-08-30 | 114.886 | 0.00% |
| 2026-08-29 | 114.886 | 0.00% |
| 2026-08-28 | 114.886 | — |
AUD to JPY conversion table
1 AUD110.7892 JPY
5 AUD553.9458 JPY
10 AUD1,107.8915 JPY
25 AUD2,769.7287 JPY
50 AUD5,539.4575 JPY
100 AUD11,078.915 JPY
500 AUD55,394.575 JPY
1,000 AUD110,789.15 JPY
5,000 AUD553,945.75 JPY
10,000 AUD1,107,891.5 JPY
Get the AUD/JPY rate in your app
One GET request returns the latest AUD → JPY 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/JPY"fetch('https://rate-api.com/api/v1/pair/AUD/JPY', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} JPY`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/JPY",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} JPY")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/JPY');
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']} JPY\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "JPY"
},
"rate": 110.7891,
"timestamp": 1790429294,
"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
JPY to AUDJapanese Yen → Australian Dollar0.0090262Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.