Convert PEN to AUD
Peruvian Sol → Australian Dollar
1 PEN = 0.417783 AUD(1 AUD = 2.393586 PEN)
Currency converter
1 PEN =
0.41778 AUD
PEN to AUD: last 30 days
Over the last 30 days, 1 PEN traded between 0.41284 and 0.42118 AUD, averaging 0.4158 AUD. The PEN/AUD rate is up 0.72% since 2026-08-28.
- 30-day high
- 0.42118
- 2026-09-23
- 30-day low
- 0.41284
- 2026-09-09
- 30-day average
- 0.4158
- Days with data: 30
- 30-day change
- +0.72%
- since 2026-08-28
0.42118
0.412842026-08-28 → 2026-09-26
| Date | 1 PEN in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.41778 | 0.00% |
| 2026-09-25 | 0.41778 | -0.58% |
| 2026-09-24 | 0.42021 | -0.23% |
| 2026-09-23 | 0.42118 | +0.92% |
| 2026-09-22 | 0.41735 | +0.55% |
| 2026-09-21 | 0.41507 | -0.26% |
| 2026-09-20 | 0.41617 | -0.01% |
| 2026-09-19 | 0.4162 | +0.03% |
| 2026-09-18 | 0.41608 | -0.04% |
| 2026-09-17 | 0.41626 | -0.40% |
| 2026-09-16 | 0.41793 | +0.07% |
| 2026-09-15 | 0.41764 | +0.09% |
| 2026-09-14 | 0.41728 | +0.40% |
| 2026-09-13 | 0.41561 | +0.01% |
| 2026-09-12 | 0.41558 | +0.01% |
| Date | 1 PEN in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.41555 | +0.01% |
| 2026-09-10 | 0.4155 | +0.64% |
| 2026-09-09 | 0.41284 | -0.04% |
| 2026-09-08 | 0.41301 | -0.03% |
| 2026-09-07 | 0.41313 | -0.18% |
| 2026-09-06 | 0.41387 | -0.04% |
| 2026-09-05 | 0.41405 | +0.03% |
| 2026-09-04 | 0.41391 | +0.06% |
| 2026-09-03 | 0.41365 | -0.51% |
| 2026-09-02 | 0.41576 | -0.13% |
| 2026-09-01 | 0.41632 | +0.56% |
| 2026-08-31 | 0.41401 | -0.16% |
| 2026-08-30 | 0.41469 | +0.01% |
| 2026-08-29 | 0.41466 | -0.03% |
| 2026-08-28 | 0.41478 | — |
PEN to AUD conversion table
1 PEN0.41778 AUD
5 PEN2.0889 AUD
10 PEN4.1778 AUD
25 PEN10.4446 AUD
50 PEN20.8892 AUD
100 PEN41.7783 AUD
500 PEN208.8916 AUD
1,000 PEN417.7833 AUD
5,000 PEN2,088.9164 AUD
10,000 PEN4,177.8328 AUD
Get the PEN/AUD rate in your app
One GET request returns the latest PEN → 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/PEN/AUD"fetch('https://rate-api.com/api/v1/pair/PEN/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PEN = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PEN/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PEN = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PEN/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PEN = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "PEN",
"to": "AUD"
},
"rate": 0.4178,
"timestamp": 1790432067,
"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 PENAustralian Dollar → Peruvian Sol2.3936Convert PEN to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.