Convert USD to SYP
US Dollar → Syrian Pound
1 USD = 121.03445 SYP(1 SYP = 0.00826211 USD)
Currency converter
1 USD =
121.0345 SYP
USD to SYP: last 30 days
Over the last 30 days, 1 USD traded between 121.0345 and 13,008.645 SYP, averaging 11,285.582 SYP. The USD/SYP rate is down 99.07% since 2026-08-28.
- 30-day high
- 13,008.645
- 2026-09-05
- 30-day low
- 121.0345
- 2026-09-23
- 30-day average
- 11,285.582
- Days with data: 30
- 30-day change
- -99.07%
- since 2026-08-28
13,008.645
121.03452026-08-28 → 2026-09-26
| Date | 1 USD in SYP | Daily change |
|---|---|---|
| 2026-09-26 | 121.0345 | 0.00% |
| 2026-09-25 | 121.0345 | 0.00% |
| 2026-09-24 | 121.0345 | 0.00% |
| 2026-09-23 | 121.0345 | -99.07% |
| 2026-09-22 | 13,003.282 | +0.02% |
| 2026-09-21 | 13,001.019 | -0.01% |
| 2026-09-20 | 13,002.139 | -0.00% |
| 2026-09-19 | 13,002.705 | +0.01% |
| 2026-09-18 | 13,001.996 | +0.03% |
| 2026-09-17 | 12,998.434 | -0.03% |
| 2026-09-16 | 13,001.709 | -0.01% |
| 2026-09-15 | 13,003.584 | -0.01% |
| 2026-09-14 | 13,004.461 | -0.02% |
| 2026-09-13 | 13,007.536 | -0.00% |
| 2026-09-12 | 13,007.886 | +0.03% |
| Date | 1 USD in SYP | Daily change |
|---|---|---|
| 2026-09-11 | 13,003.525 | +0.02% |
| 2026-09-10 | 13,001.269 | -0.01% |
| 2026-09-09 | 13,002.152 | +0.00% |
| 2026-09-08 | 13,001.856 | +0.01% |
| 2026-09-07 | 13,000.794 | -0.03% |
| 2026-09-06 | 13,005.137 | -0.03% |
| 2026-09-05 | 13,008.645 | +0.04% |
| 2026-09-04 | 13,003.274 | +0.01% |
| 2026-09-03 | 13,001.639 | -0.03% |
| 2026-09-02 | 13,005.824 | +0.01% |
| 2026-09-01 | 13,004.569 | +0.01% |
| 2026-08-31 | 13,002.959 | -0.00% |
| 2026-08-30 | 13,002.993 | -0.03% |
| 2026-08-29 | 13,006.549 | +0.07% |
| 2026-08-28 | 12,997.397 | — |
USD to SYP conversion table
1 USD121.0345 SYP
5 USD605.1722 SYP
10 USD1,210.3445 SYP
25 USD3,025.8612 SYP
50 USD6,051.7224 SYP
100 USD12,103.445 SYP
500 USD60,517.224 SYP
1,000 USD121,034.45 SYP
5,000 USD605,172.24 SYP
10,000 USD1,210,344.5 SYP
Get the USD/SYP rate in your app
One GET request returns the latest USD → 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/USD/SYP"fetch('https://rate-api.com/api/v1/pair/USD/SYP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SYP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SYP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SYP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SYP');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 USD = {$data['rate']} SYP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SYP"
},
"rate": 121.0344,
"timestamp": 1790429362,
"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
SYP to USDSyrian Pound → US Dollar0.0082621Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.