Convert USD to SCR
US Dollar → Seychellois Rupee
1 USD = 14.333168 SCR(1 SCR = 0.0697682 USD)
Currency converter
1 USD =
14.3332 SCR
USD to SCR: last 30 days
Over the last 30 days, 1 USD traded between 13.7711 and 14.7797 SCR, averaging 14.2973 SCR. The USD/SCR rate is up 2.26% since 2026-08-28.
- 30-day high
- 14.7797
- 2026-09-13
- 30-day low
- 13.7711
- 2026-09-12
- 30-day average
- 14.2973
- Days with data: 30
- 30-day change
- +2.26%
- since 2026-08-28
14.7797
13.77112026-08-28 → 2026-09-26
| Date | 1 USD in SCR | Daily change |
|---|---|---|
| 2026-09-26 | 14.3332 | 0.00% |
| 2026-09-25 | 14.3332 | +0.95% |
| 2026-09-24 | 14.1979 | -2.34% |
| 2026-09-23 | 14.5374 | +0.91% |
| 2026-09-22 | 14.4058 | -0.27% |
| 2026-09-21 | 14.4455 | -2.06% |
| 2026-09-20 | 14.7487 | +3.46% |
| 2026-09-19 | 14.2552 | +2.76% |
| 2026-09-18 | 13.8724 | -3.91% |
| 2026-09-17 | 14.4361 | +0.89% |
| 2026-09-16 | 14.3087 | +1.16% |
| 2026-09-15 | 14.1449 | -0.24% |
| 2026-09-14 | 14.1795 | -4.06% |
| 2026-09-13 | 14.7797 | +7.32% |
| 2026-09-12 | 13.7711 | -3.90% |
| Date | 1 USD in SCR | Daily change |
|---|---|---|
| 2026-09-11 | 14.3306 | +0.59% |
| 2026-09-10 | 14.246 | -0.29% |
| 2026-09-09 | 14.2875 | +0.34% |
| 2026-09-08 | 14.2393 | +0.23% |
| 2026-09-07 | 14.2067 | -3.05% |
| 2026-09-06 | 14.6535 | +6.31% |
| 2026-09-05 | 13.7832 | -3.66% |
| 2026-09-04 | 14.3061 | -0.32% |
| 2026-09-03 | 14.3517 | -0.75% |
| 2026-09-02 | 14.4596 | +1.95% |
| 2026-09-01 | 14.183 | -1.19% |
| 2026-08-31 | 14.3542 | -2.21% |
| 2026-08-30 | 14.6793 | +4.31% |
| 2026-08-29 | 14.0728 | +0.40% |
| 2026-08-28 | 14.0164 | — |
USD to SCR conversion table
1 USD14.3332 SCR
5 USD71.6658 SCR
10 USD143.3317 SCR
25 USD358.3292 SCR
50 USD716.6584 SCR
100 USD1,433.3168 SCR
500 USD7,166.584 SCR
1,000 USD14,333.168 SCR
5,000 USD71,665.84 SCR
10,000 USD143,331.68 SCR
Get the USD/SCR rate in your app
One GET request returns the latest USD → SCR 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/SCR"fetch('https://rate-api.com/api/v1/pair/USD/SCR', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SCR`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SCR",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SCR")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SCR');
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']} SCR\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SCR"
},
"rate": 14.3332,
"timestamp": 1790429358,
"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
SCR to USDSeychellois Rupee → US Dollar0.069768Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.