Convert USD to SRD
US Dollar → Surinamese Dollar
1 USD = 37.765162 SRD(1 SRD = 0.0264794 USD)
Currency converter
1 USD =
37.7652 SRD
USD to SRD: last 30 days
Over the last 30 days, 1 USD traded between 37.7355 and 38.102 SRD, averaging 37.8453 SRD. The USD/SRD rate has not changed since 2026-08-28.
- 30-day high
- 38.102
- 2026-09-13
- 30-day low
- 37.7355
- 2026-09-16
- 30-day average
- 37.8453
- Days with data: 30
- 30-day change
- 0.00%
- since 2026-08-28
38.102
37.73552026-08-28 → 2026-09-26
| Date | 1 USD in SRD | Daily change |
|---|---|---|
| 2026-09-26 | 37.7652 | 0.00% |
| 2026-09-25 | 37.7652 | -0.37% |
| 2026-09-24 | 37.9068 | +0.35% |
| 2026-09-23 | 37.7757 | +0.05% |
| 2026-09-22 | 37.7581 | -0.52% |
| 2026-09-21 | 37.9546 | -0.04% |
| 2026-09-20 | 37.9688 | +0.32% |
| 2026-09-19 | 37.8488 | +0.27% |
| 2026-09-18 | 37.7465 | -0.28% |
| 2026-09-17 | 37.8543 | +0.31% |
| 2026-09-16 | 37.7355 | -0.40% |
| 2026-09-15 | 37.8873 | +0.24% |
| 2026-09-14 | 37.7967 | -0.80% |
| 2026-09-13 | 38.102 | +0.62% |
| 2026-09-12 | 37.8659 | +0.03% |
| Date | 1 USD in SRD | Daily change |
|---|---|---|
| 2026-09-11 | 37.8549 | -0.03% |
| 2026-09-10 | 37.8665 | -0.48% |
| 2026-09-09 | 38.05 | +0.54% |
| 2026-09-08 | 37.8455 | -0.18% |
| 2026-09-07 | 37.9151 | +0.16% |
| 2026-09-06 | 37.8555 | +0.23% |
| 2026-09-05 | 37.7678 | -0.05% |
| 2026-09-04 | 37.7857 | -0.03% |
| 2026-09-03 | 37.796 | -0.65% |
| 2026-09-02 | 38.0421 | +0.66% |
| 2026-09-01 | 37.7941 | +0.10% |
| 2026-08-31 | 37.7558 | -0.04% |
| 2026-08-30 | 37.77 | +0.02% |
| 2026-08-29 | 37.7611 | -0.01% |
| 2026-08-28 | 37.7663 | — |
USD to SRD conversion table
1 USD37.7652 SRD
5 USD188.8258 SRD
10 USD377.6516 SRD
25 USD944.1291 SRD
50 USD1,888.2581 SRD
100 USD3,776.5162 SRD
500 USD18,882.581 SRD
1,000 USD37,765.162 SRD
5,000 USD188,825.81 SRD
10,000 USD377,651.62 SRD
Get the USD/SRD rate in your app
One GET request returns the latest USD → SRD 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/SRD"fetch('https://rate-api.com/api/v1/pair/USD/SRD', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} SRD`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/SRD",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} SRD")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/SRD');
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']} SRD\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "SRD"
},
"rate": 37.7652,
"timestamp": 1790432065,
"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
SRD to USDSurinamese Dollar → US Dollar0.026479Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.