Convert PHP to AUD
Philippine Peso → Australian Dollar
1 PHP = 0.0227668 AUD(1 AUD = 43.923551 PHP)
Currency converter
1 PHP =
0.022767 AUD
PHP to AUD: last 30 days
Over the last 30 days, 1 PHP traded between 0.022128 and 0.022767 AUD, averaging 0.022351 AUD. The PHP/AUD rate is up 1.97% since 2026-08-28.
- 30-day high
- 0.022767
- 2026-09-25
- 30-day low
- 0.022128
- 2026-09-07
- 30-day average
- 0.022351
- Days with data: 30
- 30-day change
- +1.97%
- since 2026-08-28
0.022767
0.0221282026-08-28 → 2026-09-26
| Date | 1 PHP in AUD | Daily change |
|---|---|---|
| 2026-09-26 | 0.022767 | 0.00% |
| 2026-09-25 | 0.022767 | +0.38% |
| 2026-09-24 | 0.02268 | +0.25% |
| 2026-09-23 | 0.022623 | +0.48% |
| 2026-09-22 | 0.022515 | +0.92% |
| 2026-09-21 | 0.022311 | -0.24% |
| 2026-09-20 | 0.022364 | 0.00% |
| 2026-09-19 | 0.022364 | 0.00% |
| 2026-09-18 | 0.022364 | -0.22% |
| 2026-09-17 | 0.022413 | +0.27% |
| 2026-09-16 | 0.022352 | +0.02% |
| 2026-09-15 | 0.022346 | +0.16% |
| 2026-09-14 | 0.02231 | +0.22% |
| 2026-09-13 | 0.022261 | 0.00% |
| 2026-09-12 | 0.022261 | 0.00% |
| Date | 1 PHP in AUD | Daily change |
|---|---|---|
| 2026-09-11 | 0.022261 | +0.09% |
| 2026-09-10 | 0.022242 | +0.42% |
| 2026-09-09 | 0.022149 | -0.12% |
| 2026-09-08 | 0.022175 | +0.21% |
| 2026-09-07 | 0.022128 | -0.14% |
| 2026-09-06 | 0.022158 | 0.00% |
| 2026-09-05 | 0.022158 | 0.00% |
| 2026-09-04 | 0.022158 | -0.37% |
| 2026-09-03 | 0.02224 | -0.58% |
| 2026-09-02 | 0.022369 | -0.27% |
| 2026-09-01 | 0.02243 | +0.24% |
| 2026-08-31 | 0.022378 | +0.23% |
| 2026-08-30 | 0.022326 | 0.00% |
| 2026-08-29 | 0.022326 | 0.00% |
| 2026-08-28 | 0.022326 | — |
PHP to AUD conversion table
1 PHP0.022767 AUD
5 PHP0.11383 AUD
10 PHP0.22767 AUD
25 PHP0.56917 AUD
50 PHP1.1383 AUD
100 PHP2.2767 AUD
500 PHP11.3834 AUD
1,000 PHP22.7668 AUD
5,000 PHP113.8342 AUD
10,000 PHP227.6683 AUD
Get the PHP/AUD rate in your app
One GET request returns the latest PHP → 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/PHP/AUD"fetch('https://rate-api.com/api/v1/pair/PHP/AUD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 PHP = ${data.rate} AUD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/PHP/AUD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 PHP = {data['rate']} AUD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/PHP/AUD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 PHP = {$data['rate']} AUD\n";Example response
{
"success": true,
"pair": {
"from": "PHP",
"to": "AUD"
},
"rate": 0.0228,
"timestamp": 1790432026,
"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 PHPAustralian Dollar → Philippine Peso43.9236Convert PHP to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.