Convert USD to RSD
US Dollar → Serbian Dinar
1 USD = 103.03627 RSD(1 RSD = 0.00970532 USD)
Currency converter
1 USD =
103.0363 RSD
USD to RSD: last 30 days
Over the last 30 days, 1 USD traded between 100.8265 and 103.307 RSD, averaging 101.6997 RSD. The USD/RSD rate is up 1.79% since 2026-08-29.
- 30-day high
- 103.307
- 2026-09-25
- 30-day low
- 100.8265
- 2026-09-10
- 30-day average
- 101.6997
- Days with data: 30
- 30-day change
- +1.79%
- since 2026-08-29
103.307
100.82652026-08-29 → 2026-09-27
| Date | 1 USD in RSD | Daily change |
|---|---|---|
| 2026-09-27 | 103.0363 | 0.00% |
| 2026-09-26 | 103.0363 | -0.26% |
| 2026-09-25 | 103.307 | +0.10% |
| 2026-09-24 | 103.2077 | +0.48% |
| 2026-09-23 | 102.7112 | +0.41% |
| 2026-09-22 | 102.2953 | +0.04% |
| 2026-09-21 | 102.2527 | -0.06% |
| 2026-09-20 | 102.3157 | +0.01% |
| 2026-09-19 | 102.3023 | +0.14% |
| 2026-09-18 | 102.155 | -0.10% |
| 2026-09-17 | 102.2537 | +0.57% |
| 2026-09-16 | 101.6773 | -0.04% |
| 2026-09-15 | 101.7179 | +0.46% |
| 2026-09-14 | 101.2473 | +0.07% |
| 2026-09-13 | 101.1741 | +0.01% |
| Date | 1 USD in RSD | Daily change |
|---|---|---|
| 2026-09-12 | 101.1632 | +0.02% |
| 2026-09-11 | 101.1434 | +0.31% |
| 2026-09-10 | 100.8265 | -0.06% |
| 2026-09-09 | 100.8835 | -0.06% |
| 2026-09-08 | 100.9447 | -0.09% |
| 2026-09-07 | 101.0361 | +0.01% |
| 2026-09-06 | 101.0299 | +0.00% |
| 2026-09-05 | 101.0279 | +0.11% |
| 2026-09-04 | 100.9215 | -0.22% |
| 2026-09-03 | 101.1466 | -0.16% |
| 2026-09-02 | 101.3122 | +0.17% |
| 2026-09-01 | 101.1394 | -0.11% |
| 2026-08-31 | 101.2473 | -0.01% |
| 2026-08-30 | 101.2579 | +0.04% |
| 2026-08-29 | 101.2221 | — |
USD to RSD conversion table
1 USD103.0363 RSD
5 USD515.1814 RSD
10 USD1,030.3627 RSD
25 USD2,575.9068 RSD
50 USD5,151.8136 RSD
100 USD10,303.627 RSD
500 USD51,518.136 RSD
1,000 USD103,036.27 RSD
5,000 USD515,181.36 RSD
10,000 USD1,030,362.7 RSD
Get the USD/RSD rate in your app
One GET request returns the latest USD → 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/USD/RSD"fetch('https://rate-api.com/api/v1/pair/USD/RSD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} RSD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/RSD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} RSD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/RSD');
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']} RSD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "RSD"
},
"rate": 103.0363,
"timestamp": 1790470776,
"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
RSD to USDSerbian Dinar → US Dollar0.0097053Convert USD to other currencies
Currency profiles
Rate as of 2026-09-27. Powered by the Rate-API exchange rates API.