Convert AUD to SYP
Australian Dollar → Syrian Pound
1 AUD = 85.089755 SYP(1 SYP = 0.0117523 AUD)
Currency converter
1 AUD =
85.0898 SYP
AUD to SYP: last 30 days
Over the last 30 days, 1 AUD traded between 85.0466 and 9,393.9399 SYP, averaging 7,777.6738 SYP. The AUD/SYP rate is down 99.09% since 2026-08-29.
- 30-day high
- 9,393.9399
- 2026-09-09
- 30-day low
- 85.0466
- 2026-09-24
- 30-day average
- 7,777.6738
- Days with data: 30
- 30-day change
- -99.09%
- since 2026-08-29
9,393.9399
85.04662026-08-29 → 2026-09-27
| Date | 1 AUD in SYP | Daily change |
|---|---|---|
| 2026-09-27 | 85.0898 | 0.00% |
| 2026-09-26 | 85.0898 | 0.00% |
| 2026-09-25 | 85.0898 | +0.05% |
| 2026-09-24 | 85.0466 | -0.58% |
| 2026-09-23 | 85.5397 | -99.07% |
| 2026-09-22 | 9,245.7921 | -0.37% |
| 2026-09-21 | 9,279.8135 | +0.24% |
| 2026-09-20 | 9,257.4859 | -0.00% |
| 2026-09-19 | 9,257.8891 | +0.01% |
| 2026-09-18 | 9,257.3839 | +0.11% |
| 2026-09-17 | 9,246.9472 | -0.28% |
| 2026-09-16 | 9,273.0254 | +0.08% |
| 2026-09-15 | 9,265.772 | -0.06% |
| 2026-09-14 | 9,271.6818 | -0.62% |
| 2026-09-13 | 9,329.7486 | -0.00% |
| Date | 1 AUD in SYP | Daily change |
|---|---|---|
| 2026-09-12 | 9,330.0002 | +0.03% |
| 2026-09-11 | 9,326.8721 | -0.15% |
| 2026-09-10 | 9,341.3346 | -0.56% |
| 2026-09-09 | 9,393.9399 | +0.15% |
| 2026-09-08 | 9,380.1714 | +0.01% |
| 2026-09-07 | 9,379.4057 | +0.12% |
| 2026-09-06 | 9,368.3456 | -0.03% |
| 2026-09-05 | 9,370.8721 | +0.04% |
| 2026-09-04 | 9,367.0033 | +0.16% |
| 2026-09-03 | 9,352.3514 | +0.61% |
| 2026-09-02 | 9,295.85 | +0.10% |
| 2026-09-01 | 9,286.9875 | -0.27% |
| 2026-08-31 | 9,312.4397 | -0.46% |
| 2026-08-30 | 9,355.344 | -0.03% |
| 2026-08-29 | 9,357.9024 | — |
AUD to SYP conversion table
1 AUD85.0898 SYP
5 AUD425.4488 SYP
10 AUD850.8976 SYP
25 AUD2,127.2439 SYP
50 AUD4,254.4877 SYP
100 AUD8,508.9755 SYP
500 AUD42,544.877 SYP
1,000 AUD85,089.755 SYP
5,000 AUD425,448.77 SYP
10,000 AUD850,897.55 SYP
Get the AUD/SYP rate in your app
One GET request returns the latest AUD → SYP 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/SYP"fetch('https://rate-api.com/api/v1/pair/AUD/SYP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 AUD = ${data.rate} SYP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/AUD/SYP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 AUD = {data['rate']} SYP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/AUD/SYP');
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']} SYP\n";Example response
{
"success": true,
"pair": {
"from": "AUD",
"to": "SYP"
},
"rate": 85.0898,
"timestamp": 1790470786,
"date": "2026-09-27"
}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
SYP to AUDSyrian Pound → Australian Dollar0.011752Convert AUD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.