Convert USD to DOP
US Dollar → Dominican Peso
1 USD = 59.407856 DOP(1 DOP = 0.0168328 USD)
Currency converter
1 USD =
59.4079 DOP
USD to DOP: last 30 days
Over the last 30 days, 1 USD traded between 58.5247 and 59.6737 DOP, averaging 59.0254 DOP. The USD/DOP rate is up 1.05% since 2026-08-28.
- 30-day high
- 59.6737
- 2026-09-24
- 30-day low
- 58.5247
- 2026-08-29
- 30-day average
- 59.0254
- Days with data: 30
- 30-day change
- +1.05%
- since 2026-08-28
59.6737
58.52472026-08-28 → 2026-09-26
| Date | 1 USD in DOP | Daily change |
|---|---|---|
| 2026-09-26 | 59.4079 | 0.00% |
| 2026-09-25 | 59.4079 | -0.45% |
| 2026-09-24 | 59.6737 | +0.28% |
| 2026-09-23 | 59.5089 | +0.79% |
| 2026-09-22 | 59.0446 | +0.31% |
| 2026-09-21 | 58.8645 | -0.30% |
| 2026-09-20 | 59.0426 | +0.02% |
| 2026-09-19 | 59.0333 | -0.32% |
| 2026-09-18 | 59.2247 | +1.01% |
| 2026-09-17 | 58.6332 | -0.79% |
| 2026-09-16 | 59.0999 | +0.24% |
| 2026-09-15 | 58.9582 | -0.21% |
| 2026-09-14 | 59.0813 | -0.01% |
| 2026-09-13 | 59.0856 | -0.01% |
| 2026-09-12 | 59.0901 | +0.39% |
| Date | 1 USD in DOP | Daily change |
|---|---|---|
| 2026-09-11 | 58.8596 | +0.16% |
| 2026-09-10 | 58.7663 | -0.24% |
| 2026-09-09 | 58.9094 | -0.47% |
| 2026-09-08 | 59.1896 | -0.03% |
| 2026-09-07 | 59.2054 | +0.39% |
| 2026-09-06 | 58.9726 | -0.37% |
| 2026-09-05 | 59.1898 | +0.00% |
| 2026-09-04 | 59.1889 | +0.89% |
| 2026-09-03 | 58.6644 | -0.35% |
| 2026-09-02 | 58.873 | -0.08% |
| 2026-09-01 | 58.9221 | +0.11% |
| 2026-08-31 | 58.8559 | +0.27% |
| 2026-08-30 | 58.6972 | +0.29% |
| 2026-08-29 | 58.5247 | -0.45% |
| 2026-08-28 | 58.7882 | — |
USD to DOP conversion table
1 USD59.4079 DOP
5 USD297.0393 DOP
10 USD594.0786 DOP
25 USD1,485.1964 DOP
50 USD2,970.3928 DOP
100 USD5,940.7856 DOP
500 USD29,703.928 DOP
1,000 USD59,407.856 DOP
5,000 USD297,039.28 DOP
10,000 USD594,078.56 DOP
Get the USD/DOP rate in your app
One GET request returns the latest USD → DOP 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/DOP"fetch('https://rate-api.com/api/v1/pair/USD/DOP', {
headers: { Authorization: 'Bearer YOUR_API_KEY' },
})
.then((res) => res.json())
.then((data) => console.log(`1 USD = ${data.rate} DOP`));import requests
res = requests.get(
"https://rate-api.com/api/v1/pair/USD/DOP",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=10,
)
data = res.json()
print(f"1 USD = {data['rate']} DOP")<?php
$ch = curl_init('https://rate-api.com/api/v1/pair/USD/DOP');
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']} DOP\n";Example response
{
"success": true,
"pair": {
"from": "USD",
"to": "DOP"
},
"rate": 59.4079,
"timestamp": 1790437513,
"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
DOP to USDDominican Peso → US Dollar0.016833Convert USD to other currencies
Currency profiles
Rate as of 2026-09-26. Powered by the Rate-API exchange rates API.