Convert AUD to PEN
Australian Dollar → Peruvian Sol
1 AUD = 2.393586 PEN(1 PEN = 0.417783 AUD)
Currency converter
1 AUD =
2.3936 PEN
AUD to PEN: last 30 days
Over the last 30 days, 1 AUD traded between 2.3743 and 2.4223 PEN, averaging 2.4051 PEN. The AUD/PEN rate is down 0.72% since 2026-08-28.
- 30-day high
- 2.4223
- 2026-09-09
- 30-day low
- 2.3743
- 2026-09-23
- 30-day average
- 2.4051
- Days with data: 30
- 30-day change
- -0.72%
- since 2026-08-28
2.4223
2.37432026-08-28 → 2026-09-26
| Date | 1 AUD in PEN | Daily change |
|---|---|---|
| 2026-09-26 | 2.3936 | 0.00% |
| 2026-09-25 | 2.3936 | +0.58% |
| 2026-09-24 | 2.3797 | +0.23% |
| 2026-09-23 | 2.3743 | -0.91% |
| 2026-09-22 | 2.3961 | -0.55% |
| 2026-09-21 | 2.4092 | +0.27% |
| 2026-09-20 | 2.4028 | +0.01% |
| 2026-09-19 | 2.4027 | -0.03% |
| 2026-09-18 | 2.4034 | +0.04% |
| 2026-09-17 | 2.4023 | +0.40% |
| 2026-09-16 | 2.3927 | -0.07% |
| 2026-09-15 | 2.3944 | -0.09% |
| 2026-09-14 | 2.3964 | -0.40% |
| 2026-09-13 | 2.4061 | -0.01% |
| 2026-09-12 | 2.4063 | -0.01% |
| Date | 1 AUD in PEN | Daily change |
|---|---|---|
| 2026-09-11 | 2.4064 | -0.01% |
| 2026-09-10 | 2.4068 | -0.64% |
| 2026-09-09 | 2.4223 | +0.04% |
| 2026-09-08 | 2.4212 | +0.03% |
| 2026-09-07 | 2.4205 | +0.18% |
| 2026-09-06 | 2.4162 | +0.04% |
| 2026-09-05 | 2.4152 | -0.03% |
| 2026-09-04 | 2.416 | -0.06% |
| 2026-09-03 | 2.4175 | +0.51% |
| 2026-09-02 | 2.4052 | +0.13% |
| 2026-09-01 | 2.402 | -0.55% |
| 2026-08-31 | 2.4154 | +0.17% |
| 2026-08-30 | 2.4114 | -0.01% |
| 2026-08-29 | 2.4116 | +0.03% |
| 2026-08-28 | 2.4109 | — |
AUD to PEN conversion table
1 AUD2.3936 PEN
5 AUD11.9679 PEN
10 AUD23.9359 PEN
25 AUD59.8396 PEN
50 AUD119.6793 PEN
100 AUD239.3586 PEN
500 AUD1,196.7928 PEN
1,000 AUD2,393.5855 PEN
5,000 AUD11,967.928 PEN
10,000 AUD23,935.855 PEN
Get the AUD/PEN rate in your app
One GET request returns the latest AUD → PEN 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/PEN"fetch('https://rate-api.com/api/v1/pair/AUD/PEN', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} PEN`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/PEN",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} PEN")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/PEN');
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']} PEN\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "PEN"
},
"rate": 2.3936,
"timestamp": 1790429299,
"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
PEN to AUDPeruvian Sol → Australian Dollar0.41778Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.