Convert RSD to EUR
Serbian Dinar → Euro
1 RSD = 0.00848889 EUR(1 EUR = 117.80101 RSD)
Currency converter
1 RSD =
0.0084889 EUR
RSD to EUR: last 30 days
Over the last 30 days, 1 RSD traded between 0.0084822 and 0.0085507 EUR, averaging 0.0085199 EUR. The RSD/EUR rate is down 0.42% since 2026-08-28.
- 30-day high
- 0.0085507
- 2026-09-14
- 30-day low
- 0.0084822
- 2026-08-30
- 30-day average
- 0.0085199
- Days with data: 30
- 30-day change
- -0.42%
- since 2026-08-28
0.0085507
0.00848222026-08-28 → 2026-09-26
| Date | 1 RSD in EUR | Daily change |
|---|---|---|
| 2026-09-26 | 0.0084889 | 0.00% |
| 2026-09-25 | 0.0084889 | -0.41% |
| 2026-09-24 | 0.008524 | -0.10% |
| 2026-09-23 | 0.0085322 | +0.05% |
| 2026-09-22 | 0.008528 | +0.19% |
| 2026-09-21 | 0.0085115 | -0.20% |
| 2026-09-20 | 0.0085285 | -0.01% |
| 2026-09-19 | 0.0085296 | -0.14% |
| 2026-09-18 | 0.0085419 | +0.28% |
| 2026-09-17 | 0.008518 | -0.08% |
| 2026-09-16 | 0.0085248 | +0.06% |
| 2026-09-15 | 0.0085199 | -0.36% |
| 2026-09-14 | 0.0085507 | +0.28% |
| 2026-09-13 | 0.0085265 | -0.01% |
| 2026-09-12 | 0.0085274 | -0.02% |
| Date | 1 RSD in EUR | Daily change |
|---|---|---|
| 2026-09-11 | 0.0085291 | -0.11% |
| 2026-09-10 | 0.0085382 | +0.37% |
| 2026-09-09 | 0.008507 | -0.27% |
| 2026-09-08 | 0.0085297 | +0.16% |
| 2026-09-07 | 0.0085162 | -0.01% |
| 2026-09-06 | 0.0085167 | -0.00% |
| 2026-09-05 | 0.0085169 | -0.11% |
| 2026-09-04 | 0.0085258 | +0.16% |
| 2026-09-03 | 0.008512 | -0.16% |
| 2026-09-02 | 0.0085252 | -0.07% |
| 2026-09-01 | 0.0085309 | +0.16% |
| 2026-08-31 | 0.0085175 | +0.42% |
| 2026-08-30 | 0.0084822 | -0.04% |
| 2026-08-29 | 0.0084852 | -0.46% |
| 2026-08-28 | 0.0085247 | — |
RSD to EUR conversion table
1 RSD0.0084889 EUR
5 RSD0.042444 EUR
10 RSD0.084889 EUR
25 RSD0.21222 EUR
50 RSD0.42444 EUR
100 RSD0.84889 EUR
500 RSD4.2444 EUR
1,000 RSD8.4889 EUR
5,000 RSD42.4445 EUR
10,000 RSD84.8889 EUR
Get the RSD/EUR rate in your app
One GET request returns the latest RSD → 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/RSD/EUR?precision=6"fetch('https://rate-api.com/api/v1/pair/RSD/EUR?precision=6', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 RSD = ${data.rate} EUR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/RSD/EUR?precision=6",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 RSD = {data['rate']} EUR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/RSD/EUR?precision=6');
curl_setopt_array($ch, [
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HTTPHEADER => ['Authorization: Bearer YOUR_API_KEY'],
]);
$data = json_decode(curl_exec($ch), true);
echo "1 RSD = {$data['rate']} EUR\n";Example response
{
"success": true,
"pair": {
"from": "RSD",
"to": "EUR"
},
"rate": 0.008489,
"timestamp": 1790432119,
"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 RSDEuro → Serbian Dinar117.801Convert RSD to other currencies
Convert other currencies to EUR
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.