Convert AUD to PHP
Australian Dollar → Philippine Peso
1 AUD = 43.923551 PHP(1 PHP = 0.0227668 AUD)
Currency converter
1 AUD =
43.9236 PHP
AUD to PHP: last 30 days
Over the last 30 days, 1 AUD traded between 43.9236 and 45.1923 PHP, averaging 44.7439 PHP. The AUD/PHP rate is down 1.94% since 2026-08-28.
- 30-day high
- 45.1923
- 2026-09-07
- 30-day low
- 43.9236
- 2026-09-25
- 30-day average
- 44.7439
- Days with data: 30
- 30-day change
- -1.94%
- since 2026-08-28
45.1923
43.92362026-08-28 → 2026-09-26
| Date | 1 AUD in PHP | Daily change |
|---|---|---|
| 2026-09-26 | 43.9236 | 0.00% |
| 2026-09-25 | 43.9236 | -0.38% |
| 2026-09-24 | 44.0922 | -0.25% |
| 2026-09-23 | 44.2035 | -0.47% |
| 2026-09-22 | 44.4141 | -0.91% |
| 2026-09-21 | 44.8216 | +0.24% |
| 2026-09-20 | 44.7156 | 0.00% |
| 2026-09-19 | 44.7156 | 0.00% |
| 2026-09-18 | 44.7156 | +0.22% |
| 2026-09-17 | 44.6169 | -0.27% |
| 2026-09-16 | 44.7393 | -0.02% |
| 2026-09-15 | 44.7499 | -0.16% |
| 2026-09-14 | 44.8225 | -0.22% |
| 2026-09-13 | 44.9211 | 0.00% |
| 2026-09-12 | 44.9211 | 0.00% |
| Date | 1 AUD in PHP | Daily change |
|---|---|---|
| 2026-09-11 | 44.9211 | -0.09% |
| 2026-09-10 | 44.9605 | -0.42% |
| 2026-09-09 | 45.1492 | +0.12% |
| 2026-09-08 | 45.0963 | -0.21% |
| 2026-09-07 | 45.1923 | +0.14% |
| 2026-09-06 | 45.1304 | 0.00% |
| 2026-09-05 | 45.1304 | 0.00% |
| 2026-09-04 | 45.1304 | +0.37% |
| 2026-09-03 | 44.9648 | +0.58% |
| 2026-09-02 | 44.7037 | +0.27% |
| 2026-09-01 | 44.5826 | -0.23% |
| 2026-08-31 | 44.6874 | -0.23% |
| 2026-08-30 | 44.7903 | 0.00% |
| 2026-08-29 | 44.7903 | 0.00% |
| 2026-08-28 | 44.7903 | — |
AUD to PHP conversion table
1 AUD43.9236 PHP
5 AUD219.6178 PHP
10 AUD439.2355 PHP
25 AUD1,098.0888 PHP
50 AUD2,196.1776 PHP
100 AUD4,392.3551 PHP
500 AUD21,961.776 PHP
1,000 AUD43,923.551 PHP
5,000 AUD219,617.76 PHP
10,000 AUD439,235.51 PHP
Get the AUD/PHP rate in your app
One GET request returns the latest AUD → PHP 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/PHP"fetch('https://rate-api.com/api/v1/pair/AUD/PHP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} PHP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/PHP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} PHP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/PHP');
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']} PHP\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "PHP"
},
"rate": 43.9236,
"timestamp": 1790429235,
"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
PHP to AUDPhilippine Peso → Australian Dollar0.022767Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.