Convert EUR to RSD
Euro → Serbian Dinar
1 EUR = 117.80101 RSD(1 RSD = 0.00848889 EUR)
Currency converter
1 EUR =
117.801 RSD
EUR to RSD: last 30 days
Over the last 30 days, 1 EUR traded between 116.9502 and 117.894 RSD, averaging 117.3722 RSD. The EUR/RSD rate is up 0.42% since 2026-08-28.
- 30-day high
- 117.894
- 2026-08-30
- 30-day low
- 116.9502
- 2026-09-14
- 30-day average
- 117.3722
- Days with data: 30
- 30-day change
- +0.42%
- since 2026-08-28
117.894
116.95022026-08-28 → 2026-09-26
| Date | 1 EUR in RSD | Daily change |
|---|---|---|
| 2026-09-26 | 117.801 | 0.00% |
| 2026-09-25 | 117.801 | +0.41% |
| 2026-09-24 | 117.3161 | +0.10% |
| 2026-09-23 | 117.2037 | -0.05% |
| 2026-09-22 | 117.2613 | -0.19% |
| 2026-09-21 | 117.4886 | +0.20% |
| 2026-09-20 | 117.2538 | +0.01% |
| 2026-09-19 | 117.2385 | +0.14% |
| 2026-09-18 | 117.0697 | -0.28% |
| 2026-09-17 | 117.3981 | +0.08% |
| 2026-09-16 | 117.3046 | -0.06% |
| 2026-09-15 | 117.3718 | +0.36% |
| 2026-09-14 | 116.9502 | -0.28% |
| 2026-09-13 | 117.2816 | +0.01% |
| 2026-09-12 | 117.2689 | +0.02% |
| Date | 1 EUR in RSD | Daily change |
|---|---|---|
| 2026-09-11 | 117.246 | +0.11% |
| 2026-09-10 | 117.1202 | -0.37% |
| 2026-09-09 | 117.5496 | +0.27% |
| 2026-09-08 | 117.2371 | -0.16% |
| 2026-09-07 | 117.4237 | +0.01% |
| 2026-09-06 | 117.4166 | +0.00% |
| 2026-09-05 | 117.4142 | +0.11% |
| 2026-09-04 | 117.2905 | -0.16% |
| 2026-09-03 | 117.4811 | +0.16% |
| 2026-09-02 | 117.2988 | +0.07% |
| 2026-09-01 | 117.221 | -0.16% |
| 2026-08-31 | 117.4059 | -0.41% |
| 2026-08-30 | 117.894 | +0.04% |
| 2026-08-29 | 117.8523 | +0.47% |
| 2026-08-28 | 117.3068 | — |
EUR to RSD conversion table
1 EUR117.801 RSD
5 EUR589.005 RSD
10 EUR1,178.0101 RSD
25 EUR2,945.0252 RSD
50 EUR5,890.0503 RSD
100 EUR11,780.101 RSD
500 EUR58,900.503 RSD
1,000 EUR117,801.01 RSD
5,000 EUR589,005.03 RSD
10,000 EUR1,178,010.1 RSD
Get the EUR/RSD rate in your app
One GET request returns the latest EUR → RSD 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/EUR/RSD"fetch('https://rate-api.com/api/v1/pair/EUR/RSD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 EUR = ${data.rate} RSD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/EUR/RSD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 EUR = {data['rate']} RSD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/EUR/RSD');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 EUR = {$data['rate']} RSD\n";Example response
{
"success": true,
"pair": {
"from": "EUR",
"to": "RSD"
},
"rate": 117.801,
"timestamp": 1790429388,
"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
RSD to EURSerbian Dinar → Euro0.0084889Convert EUR to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.