Convert SAR to EUR
Saudi Riyal → Euro
1 SAR = 0.233857 EUR(1 EUR = 4.276125 SAR)
Currency converter
1 SAR =
0.23386 EUR
SAR to EUR: last 30 days
Over the last 30 days, 1 SAR traded between 0.22886 and 0.23499 EUR, averaging 0.23098 EUR. The SAR/EUR rate is up 2.10% since 2026-08-28.
- 30-day high
- 0.23499
- 2026-09-18
- 30-day low
- 0.22886
- 2026-09-09
- 30-day average
- 0.23098
- Days with data: 30
- 30-day change
- +2.10%
- since 2026-08-28
0.23499
0.228862026-08-28 → 2026-09-26
| Date | 1 SAR in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.23386 | 0.00% |
| 2026-09-25 | 0.23386 | -0.32% |
| 2026-09-24 | 0.2346 | +0.39% |
| 2026-09-23 | 0.23369 | +0.46% |
| 2026-09-22 | 0.23263 | +0.24% |
| 2026-09-21 | 0.23209 | -0.26% |
| 2026-09-20 | 0.23269 | 0.00% |
| 2026-09-19 | 0.23269 | -0.98% |
| 2026-09-18 | 0.23499 | +1.17% |
| 2026-09-17 | 0.23227 | +0.49% |
| 2026-09-16 | 0.23114 | +0.02% |
| 2026-09-15 | 0.2311 | +0.10% |
| 2026-09-14 | 0.23086 | +0.36% |
| 2026-09-13 | 0.23004 | 0.00% |
| 2026-09-12 | 0.23004 | 0.00% |
| Date | 1 SAR in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.23004 | +0.21% |
| 2026-09-10 | 0.22957 | +0.31% |
| 2026-09-09 | 0.22886 | -0.33% |
| 2026-09-08 | 0.22961 | +0.07% |
| 2026-09-07 | 0.22945 | 0.00% |
| 2026-09-06 | 0.22945 | 0.00% |
| 2026-09-05 | 0.22945 | 0.00% |
| 2026-09-04 | 0.22945 | -0.06% |
| 2026-09-03 | 0.22959 | -0.32% |
| 2026-09-02 | 0.23032 | +0.10% |
| 2026-09-01 | 0.23008 | +0.05% |
| 2026-08-31 | 0.22997 | +0.41% |
| 2026-08-30 | 0.22904 | 0.00% |
| 2026-08-29 | 0.22904 | 0.00% |
| 2026-08-28 | 0.22904 | — |
SAR to EUR conversion table
1 SAR0.23386 EUR
5 SAR1.1693 EUR
10 SAR2.3386 EUR
25 SAR5.8464 EUR
50 SAR11.6928 EUR
100 SAR23.3857 EUR
500 SAR116.9283 EUR
1,000 SAR233.8566 EUR
5,000 SAR1,169.2829 EUR
10,000 SAR2,338.5659 EUR
Get the SAR/EUR rate in your app
One GET request returns the latest SAR → EUR 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/SAR/EUR"fetch('https://rate-api.com/api/v1/pair/SAR/EUR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 SAR = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/SAR/EUR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 SAR = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/SAR/EUR');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 SAR = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "SAR",
"to": "EUR"
},
"rate": 0.2339,
"timestamp": 1790432120,
"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
EUR to SAREuro → Saudi Riyal4.2761Convert SAR to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.