Convert AUD to PKR
Australian Dollar → Pakistani Rupee
1 AUD = 194.77355 PKR(1 PKR = 0.00513417 AUD)
Currency converter
1 AUD =
194.7736 PKR
AUD to PKR: last 30 days
Over the last 30 days, 1 AUD traded between 194.7736 and 200.203 PKR, averaging 198.3126 PKR. The AUD/PKR rate is down 2.46% since 2026-08-28.
- 30-day high
- 200.203
- 2026-09-08
- 30-day low
- 194.7736
- 2026-09-25
- 30-day average
- 198.3126
- Days with data: 30
- 30-day change
- -2.46%
- since 2026-08-28
200.203
194.77362026-08-28 → 2026-09-26
| Date | 1 AUD in PKR | Daily change |
|---|---|---|
| 2026-09-26 | 194.7736 | 0.00% |
| 2026-09-25 | 194.7736 | -0.31% |
| 2026-09-24 | 195.3852 | -0.33% |
| 2026-09-23 | 196.0361 | -0.58% |
| 2026-09-22 | 197.1853 | -0.33% |
| 2026-09-21 | 197.8436 | +0.18% |
| 2026-09-20 | 197.486 | +0.03% |
| 2026-09-19 | 197.4259 | +0.05% |
| 2026-09-18 | 197.3219 | -0.17% |
| 2026-09-17 | 197.6503 | -0.11% |
| 2026-09-16 | 197.858 | +0.11% |
| 2026-09-15 | 197.6416 | -0.08% |
| 2026-09-14 | 197.8005 | -0.51% |
| 2026-09-13 | 198.8114 | -0.17% |
| 2026-09-12 | 199.1514 | +0.12% |
| Date | 1 AUD in PKR | Daily change |
|---|---|---|
| 2026-09-11 | 198.9033 | -0.18% |
| 2026-09-10 | 199.2706 | -0.43% |
| 2026-09-09 | 200.1334 | -0.03% |
| 2026-09-08 | 200.203 | +0.04% |
| 2026-09-07 | 200.1218 | +0.14% |
| 2026-09-06 | 199.8349 | -0.06% |
| 2026-09-05 | 199.9569 | +0.03% |
| 2026-09-04 | 199.899 | +0.31% |
| 2026-09-03 | 199.2736 | +0.47% |
| 2026-09-02 | 198.3326 | +0.06% |
| 2026-09-01 | 198.2093 | -0.42% |
| 2026-08-31 | 199.0512 | -0.29% |
| 2026-08-30 | 199.6366 | -0.04% |
| 2026-08-29 | 199.711 | +0.01% |
| 2026-08-28 | 199.6955 | — |
AUD to PKR conversion table
1 AUD194.7736 PKR
5 AUD973.8677 PKR
10 AUD1,947.7355 PKR
25 AUD4,869.3387 PKR
50 AUD9,738.6774 PKR
100 AUD19,477.355 PKR
500 AUD97,386.774 PKR
1,000 AUD194,773.55 PKR
5,000 AUD973,867.74 PKR
10,000 AUD1,947,735.5 PKR
Get the AUD/PKR rate in your app
One GET request returns the latest AUD → PKR 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/PKR"fetch('https://rate-api.com/api/v1/pair/AUD/PKR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} PKR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/PKR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} PKR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/PKR');
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']} PKR\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "PKR"
},
"rate": 194.7735,
"timestamp": 1790429310,
"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
PKR to AUDPakistani Rupee → Australian Dollar0.0051342Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.